ACX_TARGET_FACTORY_CIRCUIT_CONFIG structure (acxtargets.h)
The ACX_TARGET_FACTORY_CIRCUIT_CONFIG structure is used to define the target factory circuit configuration.
Syntax
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;
Members
Size
The length, in bytes, of this structure.
Flags
Target 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
IoTarget
An 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.
SymbolicLinkName
Pointer to a Unicode string that contains the name of the symbolic link for the circuit configuration.
Remarks
Example
ACX_TARGET_FACTORY_CIRCUIT_CONFIG targetCfg;
ACX_TARGET_FACTORY_CIRCUIT_CONFIG_INIT(&targetCfg);
targetCfg.SymbolicLinkName = m_SymbolicLinkName;
ACX requirements
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.
Requirements
Requirement | Value |
---|---|
Header | acxtargets.h |