WifiDeviceReceiveIndication - NtDoc

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

VOID WifiDeviceReceiveIndication(
  WDFDEVICE Device,
  UINT16    MessageId,
  WDFMEMORY Data
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

Description

WiFiCx drivers call the WifiDeviceReceiveIndication function to send a status indication to the WiFiCx framework.

Parameters

Device

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

MessageId

[_In_] When indicating the completion of a task command, set this value to the command message ID that the driver obtained from a previous call to WifiRequestGetMessageId.

Data

[_In_] A driver-allocated WDFMEMORY object containing the data to pass to WiFiCx.

Remarks

For more information, see Handling WiFiCx command messages.

See also

WifiRequestGetMessageId

Handling WiFiCx command messages