52a3801208
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10 a95241bf-73f2-0310-859d-f6bbb57e9c96
18 lines
483 B
C++
18 lines
483 B
C++
#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
|