// wificx.h
VOID WifiRequestComplete(
WIFIREQUEST Request,
NTSTATUS NtStatus,
UINT BytesWritten
);
View the official Windows Driver Kit DDI referenceNo description available.
WiFiCx drivers call the WifiRequestComplete function to complete a request to send a command message to the device.
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.
WiFiCx drivers call WifiRequestComplete to complete requests from the EvtWifiDeviceSendCommand callback function.
For more information see Handling WiFiCx command messages.
Handling WiFiCx command messages