[go: up one dir, main page]

Menu

[r68]: / engine / sound.h  Maximize  Restore  History

Download this file

32 lines (25 with data), 656 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
* Which sound library are we going to use?
*/
#ifdef USE_FMOD4
// FMOD sound library, with full multithreaded Ogg streaming
// This code isn't stable yet
#include "audio/fmod4.h"
#endif
#ifdef USE_FMOD3
// FMOD sound library, with full multithreaded Ogg streaming
#include "audio/fmod3.h"
#endif
#ifdef USE_ALSOUND
// Allegro sound library, with optional ALOGG music support
// For DOS, BeOS and other non-fmod systems.
#include "audio/allegro.h"
#endif
#ifdef USE_SDLSOUND
// SDL Mixer
// For Linux, BeOS, Windows. Almost as good as FMOD but Free
#include "audio/sdl.h"
#endif
#ifdef USE_NOSOUND
#include "audio/nosound.h"
#endif