Skip to content

Latest commit

 

History

History
82 lines (64 loc) · 2.08 KB

nf-acxcircuit-acxcircuitdispatchacxrequest.md

File metadata and controls

82 lines (64 loc) · 2.08 KB
UID tech.root title ms.date targetos description prerelease req.assembly req.construct-type req.ddi-compliance req.dll req.header req.idl req.include-header req.irql req.kmdf-ver req.lib req.max-support req.namespace req.redist req.target-min-winverclnt req.target-min-winversvr req.target-type req.type-library req.umdf-ver req.unicode-ansi topic_type api_type api_location api_name f1_keywords dev_langs
NF:acxcircuit.AcxCircuitDispatchAcxRequest
audio
AcxCircuitDispatchAcxRequest
12/14/2022
Windows
The AcxCircuitDispatchAcxRequest dispatches an ACX WDFREQUEST object to the ACX framework which will manage the request.
false
function
acxcircuit.h
PASSIVE_LEVEL
apiref
HeaderDef
acxcircuit.h
AcxCircuitDispatchAcxRequest
AcxCircuitDispatchAcxRequest
acxcircuit/AcxCircuitDispatchAcxRequest
c++

-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

-param Circuit

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

-param Request

A standard WDFREQUEST object.

-returns

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