AcxCircuitDispatchAcxRequest - NtDoc

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

NTSTATUS AcxCircuitDispatchAcxRequest(
  ACXCIRCUIT Circuit,
  WDFREQUEST Request
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-acxcircuit-acxcircuitdispatchacxrequest)

Description

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.

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.

See also