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
|