blob: 3bf1bc7f85b58e7a083b04506d91f3a770e6a6cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef SSVLSystemAlertVolume_h
#define SSVLSystemAlertVolume_h
#include <AudioToolbox/AudioToolbox.h>
#include <CoreFoundation/CoreFoundation.h>
// TODO: docs
// Float between 0 an 1.
OSStatus SSVLGetSystemVolume(Float32 *volume);
// TODO: docs
OSStatus SSVLSetSystemVolume(Float32 volume);
#endif /* SSVLSystemAlertVolume_h */
|