// acxstreams.h
VOID ACX_STREAM_BRIDGE_CONFIG_INIT(
PACX_STREAM_BRIDGE_CONFIG Config
);
View the official Windows Driver Kit DDI referenceNo description available.
The ACX_STREAM_BRIDGE_CONFIG_INIT function initializes an ACX_STREAM_BRIDGE_CONFIG structure.
ConfigA pointer to the ACX_STREAM_BRIDGE_CONFIG structure.
Drivers should call ACX_STREAM_BRIDGE_CONFIG_INIT when creating an ACXSTREAMBRIDGE. This function resets the ACX_STREAM_BRIDGE_CONFIG structure and initializes the Type field to AcxStreamBridgeDefaultType.
ACX_STREAM_BRIDGE_CONFIG bridgeCfg;
ACX_STREAM_BRIDGE_CONFIG_INIT(&bridgeCfg);
streamCfg.InModesCount = 1;
streamCfg.InModes = inModes;
streamCfg.OutMode = &AUDIO_SIGNALPROCESSINGMODE_DEFAULT;
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.