// acxtargets.h
typedef struct _ACX_TARGET_FACTORY_CIRCUIT_CONFIG {
ULONG Size;
ULONG Flags;
WDFIOTARGET IoTarget;
WDFSTRING SymbolicLinkName;
} ACX_TARGET_FACTORY_CIRCUIT_CONFIG, *PACX_TARGET_FACTORY_CIRCUIT_CONFIG;
View the official Windows Driver Kit DDI referenceNo description available.
The ACX_TARGET_FACTORY_CIRCUIT_CONFIG structure is used to define the target factory circuit configuration.
SizeThe length, in bytes, of this structure.
FlagsTarget factory circuit configuration flags defined by the ACX_TARGET_FACTORY_CIRCUIT_CONFIG_FLAGS enum.
No flag bits are currently defined. Set this member to zero - AcxTargetFactoryCircuitConfigNoFlags
IoTargetAn optional WDFIOTARGET object that is the IoTarget for the factory circuit. For more information about WDF IO targets see Initializing a General I/O Target.
SymbolicLinkNamePointer to a Unicode string that contains the name of the symbolic link for the circuit configuration.
ACX_TARGET_FACTORY_CIRCUIT_CONFIG targetCfg;
ACX_TARGET_FACTORY_CIRCUIT_CONFIG_INIT(&targetCfg);
targetCfg.SymbolicLinkName = m_SymbolicLinkName;
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.