// acxcircuit.h
NTSTATUS AcxCircuitDispatchAcxRequest(
ACXCIRCUIT Circuit,
WDFREQUEST Request
);
View the official Windows Driver Kit DDI referenceNo description available.
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.
CircuitAn existing ACXCIRCUIT object. For more information, see Summary of ACX Objects.
RequestA standard WDFREQUEST object.
Returns STATUS_SUCCESS if the call was successful. Otherwise, it returns an appropriate error code. For more information, see Using NTSTATUS Values.
Example usage is shown below.
//
// Just give the request back to ACX.
//
status = AcxCircuitDispatchAcxRequest((ACXCIRCUIT)Object, Request);
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.