// acxelements.h
VOID ACX_MUTE_CALLBACKS_INIT(
PACX_MUTE_CALLBACKS Callbacks
);
View the official Windows Driver Kit DDI referenceNo description available.
The ACX_MUTE_CALLBACKS_INIT function initializes a ACX_MUTE_CALLBACKS structure.
CallbacksA pointer to an initialized ACX_MUTE_CALLBACKS structure.
Example usage is shown below.
ACX_MUTE_CALLBACKS muteCallbacks;
ACX_MUTE_CALLBACKS_INIT(&muteCallbacks);
muteCallbacks.EvtAcxMuteAssignState = CodecR_EvtMuteAssignState;
muteCallbacks.EvtAcxMuteRetrieveState = CodecR_EvtMuteRetrieveState;
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.