// acxcircuit.h
typedef enum _ACX_CIRCUIT_TYPE {
AcxCircuitTypeOther,
AcxCircuitTypeRender,
AcxCircuitTypeCapture,
AcxCircuitTypeMaximum
} ACX_CIRCUIT_TYPE, *PACX_CIRCUIT_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
The ACX_CIRCUIT_TYPE enumeration defines the types of ACXCIRCUITs.
AcxCircuitTypeOtherThe circuit type is other.
AcxCircuitTypeRenderThe circuit type is render.
AcxCircuitTypeCaptureThe circuit type is capture.
AcxCircuitTypeMaximumFor internal validation, do not use.
Example usage is shown below.
ACX_CIRCUIT_TYPE circuitType = AcxCircuitTypeRender;
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.