haiku/headers/private/media/VolumeControl.h

18 lines
483 B
C
Raw Normal View History

#ifndef _VOLUME_CONTROL_
#define _VOLUME_CONTROL_
/***********************************************************************
* AUTHOR: Marcus Overhagen
* FILE: VolumeControl.h
* DESCR: transitional private volume control functions
***********************************************************************/
namespace MediaKitPrivate {
status_t GetMasterVolume(float *left, float *right);
status_t SetMasterVolume(float left, float right);
} //namespace MediaKitPrivate
#endif