// wificx.h
VOID WifiDeviceReceiveIndication(
WDFDEVICE Device,
UINT16 MessageId,
WDFMEMORY Data
);
View the official Windows Driver Kit DDI referenceNo description available.
WiFiCx drivers call the WifiDeviceReceiveIndication function to send a status indication to the WiFiCx framework.
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.
For more information, see Handling WiFiCx command messages.
Handling WiFiCx command messages