AcxRequestGetParameters - NtDoc

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

VOID AcxRequestGetParameters(
  WDFREQUEST              Request,
  PACX_REQUEST_PARAMETERS Parameters
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-acxrequest-acxrequestgetparameters)

Description

The AcxRequestGetParameters function gets ACX request parameters from a WDFREQUEST.

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.

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.

See also