summaryrefslogtreecommitdiffstats
path: root/mpeglib/lib/util/audio/audioIO.cpp
blob: d066210faa235b94c440ca30edea436b6bf8d4ff (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49



#ifdef HAVE_CONFIG_H
#include "config.h"
#endif


#ifdef SDL_WRAPPER

  #include "audioIO_SDL.cpp"

//
// If native sound is defined compiled for that
//

#else


#ifdef OS_AIX 
  #include "audioIO_AIX.cpp"
#endif

#ifdef OS_Linux
  #include "audioIO_Linux.cpp"
#endif

#ifdef OS_BSD
  #include "audioIO_Linux.cpp"
#endif

#if defined(OS_IRIX) || defined(OS_IRIX64)
  #include "audioIO_IRIX.cpp"
#endif

#ifdef OS_HPUX
  #include "audioIO_HPUX.cpp"
#endif

#ifdef OS_SunOS
  #include "audioIO_SunOS.cpp"
#endif

#ifdef __BEOS__
  #include "audioIO_BeOS.cpp"
#endif


#endif