// wificx.h
NTSTATUS WifiDeviceInitialize(
WDFDEVICE Device,
WIFI_DEVICE_CONFIG *Config
);
View the official Windows Driver Kit DDI referenceNo description available.
The WifiDeviceInitialize function registers the client driver's WiFiCx-specific callback functions.
Device[_In_] A handle to a framework device object that the client driver obtained from a previous call to WdfDeviceCreate.
Config[_In_] A pointer to a client driver-allocated and initialized WIFI_DEVICE_CONFIG structure.
Returns STATUS_SUCCESS if the operation succeeds. Otherwise, this function may return an appropriate NTSTATUS error code.
The client driver must call WifiDeviceInitialize from EVT_WDF_DRIVER_DEVICE_ADD, after calling NetDeviceInitConfig but before calling WdfDeviceCreate.
For an example of how to initialize a WifiCx device, see Writing a WiFiCx client driver.
Writing a WiFiCx client driver