WIFI_DEVICE_CONFIG - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wificx-wifi_device_config)

Description

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.

Members

Size

The size of this WIFI_DEVICE_CONFIG structure, in bytes.

WdiVersion

The WDI version.

SendCommand

A pointer to the client driver's implementation of the EVT_WIFI_DEVICE_SEND_COMMAND callback function.

CreateAdapter

A pointer to the client driver's implementation of the EVT_WIFI_DEVICE_CREATE_ADAPTER callback function.

CreateWifiDirectDevice

A pointer to the client driver's implementation of the EVT_WIFI_DEVICE_CREATE_WIFIDIRECTDEVICE callback function.

Remarks

Call WIFI_DEVICE_CONFIG_INIT to initialize this structure.

See also

WifiDeviceInitialize

EVT_WIFI_DEVICE_CREATE_ADAPTER

EVT_WIFI_DEVICE_SEND_COMMAND

EVT_WIFI_DEVICE_CREATE_WIFIDIRECTDEVICE

WIFI_DEVICE_CONFIG_INIT