// acxtargets.h
typedef struct _ACX_TARGET_STREAM_CONFIG {
ULONG Size;
ULONG Flags;
ACXTARGETCIRCUIT TargetCircuit;
ULONG PinId;
ACXDATAFORMAT DataFormat;
PCGUID SignalProcessingMode;
ACXOBJECTBAG OptionalParameters;
} ACX_TARGET_STREAM_CONFIG, *PACX_TARGET_STREAM_CONFIG;
View the official Windows Driver Kit DDI referenceNo description available.
The ACX_TARGET_STREAM_CONFIG structure is used to define the target stream configuration.
SizeThe length, in bytes, of this structure.
FlagsTarget stream configuration flags defined by the ACX_TARGET_STREAM_CONFIG_FLAGS enum.
No flag bits are currently defined. Set this member to zero - AcxTargetStreamConfigNoFlags
TargetCircuitAn ACXTARGETCIRCUIT object representing the target circuit.
PinIdThe remote pin ID number of the remote target.
DataFormatAn ACXDATAFORMAT ACX object that defines the target stream data format.
SignalProcessingModeA GUID identifying the audio signal processing mode of the new stream circuit.For more information about audio modes, see Audio Signal Processing Modes.
OptionalParametersAn optional ACXOBJECTBAG ACX object describing optional parameters.
ACX_TARGET_STREAM_CONFIG targetStreamCfg;
ACX_TARGET_STREAM_CONFIG_INIT(&targetStreamCfg);
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.