ACX_MUTE_CONFIG_INIT - NtDoc

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

void ACX_MUTE_CONFIG_INIT(
  cfg
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-acxelements-acx_mute_config_init)

Description

The ACX_MUTE_CONFIG_INIT function initializes an ACX_MUTE_CONFIG structure.

Parameters

cfg

An ACX_MUTE_CONFIG structure.

Remarks

Example

Example usage is shown below.

        //
        // Create Mute element
        //
        ACX_MUTE_CONFIG muteCfg;
        ACX_MUTE_CONFIG_INIT(&muteCfg);
        muteCfg.ChannelsCount = MAX_CHANNELS;
        muteCfg.Name = &KSAUDFNAME_WAVE_MUTE;
        muteCfg.Callbacks = &muteCallbacks;

ACX requirements

Minimum ACX version: 1.0

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

See also