WifiDeviceInitConfig - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wificx.h

NTSTATUS WifiDeviceInitConfig(
  PWDFDEVICE_INIT DeviceInit
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wificx-wifideviceinitconfig)

Description

The WifiDeviceInitConfig function initializes WiFiCx device initialization operations when the Plug and Play (PnP) manager reports the existence of a device.

Parameters

DeviceInit

[_Inout_] A pointer to a WDFDEVICE_INIT object that the client driver received in its EVT_WDF_DRIVER_DEVICE_ADD routine.

Return value

Returns STATUS_SUCCESS if the operation succeeds. Otherwise, this function may return an appropriate NTSTATUS error code.

Remarks

In its EVT_WDF_DRIVER_DEVICE_ADD callback function, a WifiCx client driver calls WifiDeviceInitConfig after calling NetDeviceInitConfig but before calling WdfDeviceCreate.

The driver must reference the same WDFDEVICE_INIT object passed in by the framework.

See also

WDFDEVICE_INIT

EVT_WDF_DRIVER_DEVICE_ADD

NetDeviceInitConfig

WdfDeviceCreate