AcxRequestGetParameters function (acxrequest.h)

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(&params);

    AcxRequestGetParameters(Request, &params);

    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

See also