EVT_WIFI_DEVICE_SEND_COMMAND - NtDoc

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

EVT_WIFI_DEVICE_SEND_COMMAND EvtWifiDeviceSendCommand;

VOID EvtWifiDeviceSendCommand(
  WDFDEVICE Device,
  WIFIREQUEST SendRequest
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-wificx-evt_wifi_device_send_command)

Description

A WiFiCx driver's EvtWifiDeviceSendCommand callback function retrieves and processes a command message sent by the WiFiCx framework.

Parameters

Device

[_In_] A handle to a framework device object that the client driver obtained from a previous call to WdfDeviceCreate.

SendRequest

[_In_] A handle to a framework WIFIREQUEST object that represents a command message.

Remarks

A WiFiCx client driver must register its EvtWifiDeviceSendCommand callback function by calling WifiDeviceInitialize.

The WiFiCx framework invokes EvtWifiDeviceSendCommand to issue a command message to the client driver.

For more information, see Handling WiFiCx command messages.

See also

Handling WiFiCx command messages

WifiDeviceInitialize

WifiRequestGetInOutBuffer

WifiRequestGetMessageId

WifiRequestComplete