// acxcircuit.h
VOID AcxCircuitInitSetCircuitType(
PACXCIRCUIT_INIT CircuitInit,
ACX_CIRCUIT_TYPE CircuitType
);
View the official Windows Driver Kit DDI referenceNo description available.
The AcxCircuitInitSetCircuitType function is used to set the circuit type of the ACXCIRCUIT.
CircuitInitThe ACXCIRCUIT_INIT structure that defines the circuit initialization. ACXCIRCUIT_INIT is an opaque object used for circuit initialization. Use AcxCircuitInitAllocate to initialize the ACXCIRCUIT_INIT structure.
CircuitTypeAn ACX_CIRCUIT_TYPE enum that is used to define the circuit type. For example, AcxCircuitTypeRender, AcxCircuitTypeCapture or AcxCircuitTypeOther.
Example usage is shown below.
ACX_CIRCUIT_TYPE circuitType = AcxCircuitTypeRender;
// The driver uses this DDI to specify the circuit type. The
// circuit type can be AcxCircuitTypeRender, AcxCircuitTypeCapture,
// AcxCircuitTypeOther, or AcxCircuitTypeMaximum (for validation).
//
AcxCircuitInitSetCircuitType(circuitInit, AcxCircuitTypeRender);
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.