AcxCircuitDispatchAcxRequest function (acxcircuit.h)

The AcxCircuitDispatchAcxRequest dispatches an ACX WDFREQUEST object to the ACX framework which will manage the request. For more information about working with WDF request objects, see Creating Framework Request Objects and wdfrequest.h header.

Syntax

NTSTATUS AcxCircuitDispatchAcxRequest(
  ACXCIRCUIT Circuit,
  WDFREQUEST Request
);

Parameters

Circuit

An existing ACXCIRCUIT object. For more information, see Summary of ACX Objects.

Request

A standard WDFREQUEST object.

Return value

Returns STATUS_SUCCESS if the call was successful. Otherwise, it returns an appropriate error code. For more information, see Using NTSTATUS Values.

Remarks

Example

Example usage is shown below.

    //
    // Just give the request back to ACX.
    //
    status = AcxCircuitDispatchAcxRequest((ACXCIRCUIT)Object, Request);

ACX requirements

Minimum ACX version: 1.0

For more information about ACX versions, see ACX version overview.

Requirements

Requirement Value
Header acxcircuit.h
IRQL PASSIVE_LEVEL

See also