You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.1 KiB
52 lines
1.1 KiB
#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)
|