// wificx.h
VOID WIFI_DEVICE_CONFIG_INIT(
WIFI_DEVICE_CONFIG *Config,
ULONG WdiVersion,
PFN_WIFI_DEVICE_SEND_COMMAND SendCommand,
PFN_WIFI_DEVICE_CREATE_ADAPTER CreateAdapter,
PFN_WIFI_DEVICE_CREATE_WIFIDIRECTDEVICE CreateWifiDirectDevice
);
View the official Windows Driver Kit DDI referenceNo description available.
The WIFI_DEVICE_CONFIG_INIT function initializes the WIFI_DEVICE_CONFIG structure.
Config[_Out_] A pointer to the client driver-allocated WIFI_DEVICE_CONFIG structure.
WdiVersion[_In_] The WDI version.
SendCommand[_In_] A pointer to the client driver's implementation of the EVT_WIFI_DEVICE_SEND_COMMAND callback function.
CreateAdapter[_In_] A pointer to the client driver's implementation of the EVT_WIFI_DEVICE_CREATE_ADAPTER callback function.
CreateWifiDirectDevice[_In_] A pointer to the client driver's implementation of the EVT_WIFI_DEVICE_CREATE_WIFIDIRECTDEVICE callback function.
The client driver calls this function from its EVT_WDF_DRIVER_DEVICE_ADD event callback function in preparation for calling WifiDeviceInitialize.
Writing a WiFiCx client driver
EVT_WIFI_DEVICE_CREATE_ADAPTER
EVT_WIFI_DEVICE_CREATE_WIFIDIRECTDEVICE