ACX_STREAM_BRIDGE_CONFIG_INIT - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// acxstreams.h

VOID ACX_STREAM_BRIDGE_CONFIG_INIT(
  PACX_STREAM_BRIDGE_CONFIG Config
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-acxstreams-acx_stream_bridge_config_init)

Description

The ACX_STREAM_BRIDGE_CONFIG_INIT function initializes an ACX_STREAM_BRIDGE_CONFIG structure.

Parameters

Config

A pointer to the ACX_STREAM_BRIDGE_CONFIG structure.

Remarks

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.

Example

    ACX_STREAM_BRIDGE_CONFIG bridgeCfg;

    ACX_STREAM_BRIDGE_CONFIG_INIT(&bridgeCfg);
    streamCfg.InModesCount = 1;
    streamCfg.InModes      = inModes;
    streamCfg.OutMode      = &AUDIO_SIGNALPROCESSINGMODE_DEFAULT;

ACX requirements

Minimum ACX version: 1.0

For more information about ACX versions, see ACX version overview.

See also