]> Shamusworld >> Repos - apple2/blob - src/sound.h
Changes to sound system relating to the new threaded CPU core. It works,
[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 AdjustLastToggleCycles(uint64 elapsedCycles);
23 void VolumeUp(void);
24 void VolumeDown(void);
25 uint8 GetVolume(void);
26
27 #endif  // __SOUND_H__