WifiRequestComplete - NtDoc

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

VOID WifiRequestComplete(
  WIFIREQUEST Request,
  NTSTATUS    NtStatus,
  UINT        BytesWritten
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

Description

WiFiCx drivers call the WifiRequestComplete function to complete a request to send a command message to the device.

Parameters

Request

[_In_] A handle to the framework request object passed in from the EvtWifiDeviceSendCommand callback function.

NtStatus

[_In_] An NTSTATUS value that represents the completion status of the request.

BytesWritten

[_In_] The number of bytes written.

Remarks

WiFiCx drivers call WifiRequestComplete to complete requests from the EvtWifiDeviceSendCommand callback function.

For more information see Handling WiFiCx command messages.

See also

EvtWifiDeviceSendCommand

Handling WiFiCx command messages