audio_manager_status_volume_change_t

The audio volume change event.

Synopsis:

typedef struct  {
    audio_manager_device_t dev ;
    double output_level ;
    double input_level ;
    bool output_mute ;
    bool input_mute ;
}audio_manager_status_volume_change_t;

Since:

BlackBerry 10.0.0

Data:

audio_manager_device_t dev
The audio device that the event is triggered for.
double output_level
The current output volume level (percentage) of the specified audio device.
double input_level
The current input volume level (percentage) of the specified audio device.
bool output_mute
The current output mute status of the specified audio device.
bool input_mute
The current input mute status of the specified audio device.

Library:

libaudio_manager (For the qcc command, use the -l audio_manager option to link against this library)

Description:

This structure defines the changes to the volume of the specified audio device.