// acxcircuit.h
typedef struct _ACX_FACTORY_CIRCUIT_ADD_CIRCUIT {
ULONG Size;
ULONG Flags;
GUID CircuitUniqueId;
HANDLE CompositeProperties;
HANDLE FactoryProperties;
HANDLE CircuitProperties;
PCUNICODE_STRING TargetSymbolicLinkName;
} ACX_FACTORY_CIRCUIT_ADD_CIRCUIT, *PACX_FACTORY_CIRCUIT_ADD_CIRCUIT;
View the official Windows Driver Kit DDI referenceNo description available.
The ACX_FACTORY_CIRCUIT_ADD_CIRCUIT structure is used to add circuits by an ACX circuit factory.
SizeThe length, in bytes, of this structure.
FlagsBitwise OR of ACX_FACTORY_CIRCUIT_ADD_CIRCUIT_FLAGS.
CircuitUniqueIdA GUID that is used to uniquely identify the circuit.
CompositePropertiesOptional handle to CompositeProperties.
FactoryPropertiesOptional handle to FactoryProperties.
CircuitPropertiesOptional handle to CircuitProperties
TargetSymbolicLinkNameOptional string that provides the target symbolic link name.
ACX Manager initializes and sends this structure to an ACXFACTORYCIRCUIT when a new ACXCIRCUIT object is needed. For more information about ACX objects, see Summary of ACX Objects.
Drivers receive this structure in their ACXFACTORYCIRCUIT's callback as a passing parameter.
Example pending.
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.