Mercurial > sdl-ios-xcode
comparison src/audio/SDL_audio.c @ 3802:cef5d927591f SDL-ryan-multiple-audio-device
Moving more out of core and into drivers...
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Wed, 04 Oct 2006 21:58:48 +0000 |
parents | e17a59e6aff6 |
children | 3decf9cdeb63 |
comparison
equal
deleted
inserted
replaced
3801:e17a59e6aff6 | 3802:cef5d927591f |
---|---|
25 | 25 |
26 #include "SDL.h" | 26 #include "SDL.h" |
27 #include "SDL_audio_c.h" | 27 #include "SDL_audio_c.h" |
28 #include "SDL_audiomem.h" | 28 #include "SDL_audiomem.h" |
29 #include "SDL_sysaudio.h" | 29 #include "SDL_sysaudio.h" |
30 | |
31 #ifdef __OS2__ | |
32 /* We'll need the DosSetPriority() API! */ | |
33 #define INCL_DOSPROCESS | |
34 #include <os2.h> | |
35 #endif | |
36 | 30 |
37 #define _THIS SDL_AudioDevice *this | 31 #define _THIS SDL_AudioDevice *this |
38 | 32 |
39 static SDL_AudioDriver current_audio; | 33 static SDL_AudioDriver current_audio; |
40 | 34 |