Mercurial > SDL_sound_CoreAudio
comparison decoders/raw.c @ 104:103cfcb3c014
Updated to fix build system problem.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Wed, 03 Oct 2001 18:15:52 +0000 |
parents | 6d9fdec2f708 |
children | 40de367eb59e |
comparison
equal
deleted
inserted
replaced
103:706ec5842737 | 104:103cfcb3c014 |
---|---|
36 * Please see the file LICENSE in the source's root directory. | 36 * Please see the file LICENSE in the source's root directory. |
37 * | 37 * |
38 * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) | 38 * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) |
39 */ | 39 */ |
40 | 40 |
41 #ifdef SOUND_SUPPORTS_RAW | 41 #include "SDL_sound.h" |
42 | 42 |
43 #define __SDL_SOUND_INTERNAL__ | 43 #define __SDL_SOUND_INTERNAL__ |
44 #include "SDL_sound_internal.h" | 44 #include "SDL_sound_internal.h" |
45 | |
46 #ifdef SOUND_SUPPORTS_RAW | |
45 | 47 |
46 #include <stdio.h> | 48 #include <stdio.h> |
47 #include <stdlib.h> | 49 #include <stdlib.h> |
48 #include <string.h> | 50 #include <string.h> |
49 #include <assert.h> | 51 #include <assert.h> |
50 #include "SDL_sound.h" | |
51 | |
52 | 52 |
53 static int RAW_init(void); | 53 static int RAW_init(void); |
54 static void RAW_quit(void); | 54 static void RAW_quit(void); |
55 static int RAW_open(Sound_Sample *sample, const char *ext); | 55 static int RAW_open(Sound_Sample *sample, const char *ext); |
56 static void RAW_close(Sound_Sample *sample); | 56 static void RAW_close(Sound_Sample *sample); |