예제에 사용되는 정의 및 변수
중요
WSD 챌린저 기능은 더 이상 사용되지 않으며 모든 WSD 챌린저 관련 설명서는 2018년에 제거될 예정입니다.
다음 코드에서는 이 섹션의 코드 예제에서 사용되는 상수 정의 및 공통 변수를 보여 줍니다.
//
// 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;