Removed sdl_mixer functions from .def file.
[bcl.git] / audio.h
blobc2e8c297f99f6472bc63b6fc8351ddb1c115890b
1 #ifndef _audio_h
2 #define _audio_h
4 DECLSPEC void initAudio();
5 DECLSPEC void terminateAudio();
6 DECLSPEC int streamSound(char * file);
7 DECLSPEC int loadSound(char * file);
8 DECLSPEC void unloadSound(int sound);
9 DECLSPEC void setSoundPosition(int sound, float x, float y, float z);
10 DECLSPEC void playSound(int sound);
11 DECLSPEC void loopSound(int sound);
12 DECLSPEC void stopSound(int sound);
13 DECLSPEC void setSoundPitch(int sound, float pitch);
14 DECLSPEC void setListenerPosition(float x, float y, float z);
16 #endif