mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 06:06:00 -06:00
11 lines
244 B
C
11 lines
244 B
C
#ifndef _Media_audioSystem_h_
|
|
#define _Media_audioSystem_h_
|
|
|
|
#define MAX_MAINVOLUME 10000
|
|
|
|
bool GetMainVolume(int &left, int &right);
|
|
int GetMainVolume();
|
|
bool SetMainVolume(int left, int right);
|
|
bool SetMainVolume(int vol);
|
|
|
|
#endif
|