Definições e variáveis usadas nos exemplos
Importante
A funcionalidade do WSD Challenger foi preterida e toda a documentação relacionada ao WSD Challenger será removida em 2018.
O código a seguir mostra definições constantes e variáveis comuns que são usadas nos exemplos de código nesta seção.
//
// WSD Challenge DLL name (including a forward path separator) and public API names
//
#define WSDCHNGR_DLL_NAME L"\\WSDCHNGR.DLL"
#define WSDCHNR_INITIALIZE "WSDCHNGRInitialize"
#define WSDCHNR_SHUTDOWN "WSDCHNGRShutdown"
#define WSDCHNR_REGISTER_DEVICE_TO_CHALLENGE "WSDCHNGRRegisterDeviceToChallenge"
//
// Function pointer types for public WSD Challenge APIs
//
typedef HRESULT (*PFN_WSDCHNR_INITIALIZE)();
typedef HRESULT (*PFN_WSDCHNR_SHUTDOWN)();
typedef HRESULT (*PFN_WSDCHNR_REGISTER_DEVICE_TO_CHALLENGE)(__in IFunctionInstance *pFunctionInstance);
//
// The instance module of the WSD Challenge DLL (WSDCHNGR.DLL)
//
HMODULE m_hChallengeDll;
//
// Function pointer for public WSD Challenge APIs that are used by this driver
//
PFN_WSDCHNR_REGISTER_DEVICE_TO_CHALLENGE m_pfnRegisterDeviceToChallenge;
PFN_WSDCHNR_INITIALIZE m_pfnInitializeChallenge;
PFN_WSDCHNR_SHUTDOWN m_pfnShutdownChallenge;