// wificx.h
typedef struct _WIFI_DEVICE_CONFIG {
ULONG Size;
ULONG WdiVersion;
PFN_WIFI_DEVICE_SEND_COMMAND SendCommand;
PFN_WIFI_DEVICE_CREATE_ADAPTER CreateAdapter;
PFN_WIFI_DEVICE_CREATE_WIFIDIRECTDEVICE CreateWifiDirectDevice;
} WIFI_DEVICE_CONFIG;
View the official Windows Driver Kit DDI referenceNo description available.
The WIFI_DEVICE_CONFIG structure contains pointers to a client driver's WiFiCx-specific callback functions. The client driver must supply an initialized WIFI_DEVICE_CONFIG structure as an input parameter to WifiDeviceInitialize.
SizeThe size of this WIFI_DEVICE_CONFIG structure, in bytes.
WdiVersionThe WDI version.
SendCommandA pointer to the client driver's implementation of the EVT_WIFI_DEVICE_SEND_COMMAND callback function.
CreateAdapterA pointer to the client driver's implementation of the EVT_WIFI_DEVICE_CREATE_ADAPTER callback function.
CreateWifiDirectDeviceA pointer to the client driver's implementation of the EVT_WIFI_DEVICE_CREATE_WIFIDIRECTDEVICE callback function.
Call WIFI_DEVICE_CONFIG_INIT to initialize this structure.
EVT_WIFI_DEVICE_CREATE_ADAPTER
EVT_WIFI_DEVICE_CREATE_WIFIDIRECTDEVICE