Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The AcxRequestGetParameters function gets ACX request parameters from a WDFREQUEST.
Syntax
void AcxRequestGetParameters(
WDFREQUEST Request,
PACX_REQUEST_PARAMETERS Parameters
);
Parameters
Request
An I/O WDFREQUEST object.
For more information about working with WDF request objects, see Creating Framework Request Objects and wdfrequest.h header.
Parameters
An ACX_REQUEST_PARAMETERS structure that is initialized with the WDFREQUEST.
Return value
None
Remarks
Example
Example usage is shown below.
ACX_REQUEST_PARAMETERS params;
WDFREQUEST request;
ACX_REQUEST_PARAMETERS_INIT(¶ms);
AcxRequestGetParameters(Request, ¶ms);
request = elementCtx->Request;
ACX requirements
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.
Requirements
Requirement | Value |
---|---|
Header | acxrequest.h |
IRQL | <= DISPATCH_LEVEL |