53 lines
1 KiB
C
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)
|