]> Shamusworld >> Repos - apple2/blob - src/sound.h
Changed clock on v65C02 to 64-bit, more GUI refactoring
[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 "types.h"
12
13 // Global variables (exported)
14
15
16 // Functions
17
18 void SoundInit(void);
19 void SoundDone(void);
20 void ToggleSpeaker(uint64 elapsedCycles);
21 void AddToSoundTimeBase(uint64 cycles);
22 void VolumeUp(void);
23 void VolumeDown(void);
24 uint8 GetVolume(void);
25
26 #endif  // __SOUND_H__