// wificx.h
PVOID WifiRequestGetInOutBuffer(
WIFIREQUEST Request,
UINT *InputBufferLength,
UINT *OutBufferLength
);
View the official Windows Driver Kit DDI referenceNo description available.
WiFiCx drivers call the WifiRequestGetInOutBuffer function to get the input/output buffer for a command message.
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.
Returns a pointer to the memory location where the command message is stored.
For more information, see Handling WiFiCx command messages.
Handling WiFiCx command messages