audio_manager_set_device_connected()

Set any audio device as connected.

Synopsis:

#include <audio/audio_manager_device.h>
 
int audio_manager_set_device_connected(audio_manager_device_t dev, bool connected)

Arguments:

dev

The type of the audio device.

connected

true if the given audio device is to be marked as connected, false otherwise.

Library:

libaudio_manager

Description:

The audio_manager_set_device_connected() function sets the connected status of a given audio device to help the audio manager allocate proper audio devices as default.

A process must have either an effective user ID of root, or the authman capability of access_audio_manager, to use this function.

Note that this function is intended for use by system components. Therefore, it is not suitable for all applications

Returns:

EOK upon success, negative errno upon failure.