WifiRequestGetInOutBuffer - NtDoc

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

PVOID WifiRequestGetInOutBuffer(
  WIFIREQUEST Request,
  UINT        *InputBufferLength,
  UINT        *OutBufferLength
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

Description

WiFiCx drivers call the WifiRequestGetInOutBuffer function to get the input/output buffer for a command message.

Parameters

Request

[_In_] A handle to the framework object which represents a command message from the WiFiCx framework.

InputBufferLength

[_Out_opt_] A pointer to the location that receives the length, in bytes, of the command message input buffer.

OutBufferLength

[_Out_opt_] A pointer to the location that receives the length, in bytes, of the command message output buffer.

Return value

Returns a pointer to the memory location where the command message is stored.

Remarks

For more information, see Handling WiFiCx command messages.

See also

EvtWifiDeviceSendCommand

Handling WiFiCx command messages