]> Shamusworld >> Repos - legend/blob - src/sound.h
Initial commit for the Legend of A... project!
[legend] / src / sound.h
1 //
2 // SOUND.H
3 //
4 // by James Hammons
5 // (C) 2014 Underground Software
6 //
7
8 #ifndef __SOUND_H__
9 #define __SOUND_H__
10
11 #include <stdint.h>
12
13 // Global variables (exported)
14
15
16 // Functions
17
18 void SoundInit(void);
19 void SoundDone(void);
20 void SoundPause(void);
21 void SoundResume(void);
22 void ToggleSpeaker(void);
23 void WriteSampleToBuffer(void);
24 void VolumeUp(void);
25 void VolumeDown(void);
26 uint8_t GetVolume(void);
27
28 #endif  // __SOUND_H__
29