windows-nt/Source/XPSP1/NT/net/published/lib/dload/wzcdlg.c
2020-09-26 16:20:57 +08:00

53 lines
1 KiB
C

#include "netpch.h"
#pragma hdrstop
#include <netcon.h>
#include <wzcdlg.h>
static
HRESULT
WZCCanShowBalloon (
IN const GUID * pGUIDConn,
IN const PCWSTR pszConnectionName,
IN OUT BSTR * pszBalloonText,
IN OUT BSTR * pszCookie
)
{
return HRESULT_FROM_WIN32(ERROR_PROC_NOT_FOUND);
}
static
HRESULT
WZCOnBalloonClick (
IN const GUID * pGUIDConn,
IN const BSTR pszConnectionName,
IN const BSTR szCookie
)
{
return HRESULT_FROM_WIN32(ERROR_PROC_NOT_FOUND);
}
static
HRESULT
WZCQueryConnectionStatusText (
IN const GUID * pGUIDConn,
IN const NETCON_STATUS ncs,
IN OUT BSTR * pszStatusText
)
{
return HRESULT_FROM_WIN32(ERROR_PROC_NOT_FOUND);
}
//
// !! WARNING !! The entries below must be in alphabetical order, and are CASE SENSITIVE (eg lower case comes last!)
//
DEFINE_PROCNAME_ENTRIES(wzcdlg)
{
DLPENTRY(WZCCanShowBalloon)
DLPENTRY(WZCOnBalloonClick)
DLPENTRY(WZCQueryConnectionStatusText)
};
DEFINE_PROCNAME_MAP(wzcdlg)