From efaeb275f78e18d594d9ee8ff04eccd2dc59512c Mon Sep 17 00:00:00 2001 From: truelight Date: Mon, 9 Aug 2004 17:04:08 +0000 Subject: (svn r1) Import of revision 975 of old (crashed) SVN --- sound.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 sound.h (limited to 'sound.h') diff --git a/sound.h b/sound.h new file mode 100644 index 000000000..989e69cec --- /dev/null +++ b/sound.h @@ -0,0 +1,25 @@ +#ifndef SOUND_H +#define SOUND_H + +typedef struct Mixer Mixer; + +typedef struct MusicFileSettings { + byte playlist; + byte music_vol; + byte effect_vol; + byte custom_1[33]; + byte custom_2[33]; + bool btn_down; + bool shuffle; +} MusicFileSettings; + +VARDEF byte _music_wnd_cursong; +VARDEF bool _song_is_active; +VARDEF byte _cur_playlist[33]; +VARDEF MusicFileSettings msf; +VARDEF Mixer *_mixer; + +bool MxInitialize(uint rate, const char *filename); +void MxMixSamples(Mixer *mx, void *buffer, uint samples); + +#endif /* SOUND_H */ -- cgit v1.2.3-54-g00ecf