]> Shamusworld >> Repos - apple2/blob - src/sound.h
1cea703c138a3c42f480a813539d71b96fca0b7d
[apple2] / src / sound.h
1 //
2 // SOUND.H
3 //
4 // by James L. Hammons
5 // (C) 2004 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 ToggleSpeaker(uint64_t elapsedCycles);
21 //void AddToSoundTimeBase(uint64_t cycles);
22 void AdjustLastToggleCycles(uint64_t elapsedCycles);
23 void VolumeUp(void);
24 void VolumeDown(void);
25 uint8_t GetVolume(void);
26
27 #endif  // __SOUND_H__