WIFI_DEVICE_CONFIG_INIT - NtDoc

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

NtDoc

No description available.

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

Description

The WIFI_DEVICE_CONFIG_INIT function initializes the WIFI_DEVICE_CONFIG structure.

Parameters

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.

Remarks

The client driver calls this function from its EVT_WDF_DRIVER_DEVICE_ADD event callback function in preparation for calling WifiDeviceInitialize.

See also

Writing a WiFiCx client driver

WIFI_DEVICE_CONFIG

EVT_WIFI_DEVICE_SEND_COMMAND

EVT_WIFI_DEVICE_CREATE_ADAPTER

EVT_WIFI_DEVICE_CREATE_WIFIDIRECTDEVICE

WifiDeviceInitialize