comparison decoders/wav.c @ 100:6d9fdec2f708

added config.h, added --enable-debug flag, various other changes to the build system
author fingolfin
date Wed, 03 Oct 2001 12:25:34 +0000
parents 40006625142a
children 103cfcb3c014
comparison
equal deleted inserted replaced
99:3f0beddfd9c9 100:6d9fdec2f708
27 * 27 *
28 * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) 28 * This file written by Ryan C. Gordon. (icculus@clutteredmind.org)
29 */ 29 */
30 30
31 #ifdef SOUND_SUPPORTS_WAV 31 #ifdef SOUND_SUPPORTS_WAV
32
33 #define __SDL_SOUND_INTERNAL__
34 #include "SDL_sound_internal.h"
32 35
33 #include <stdio.h> 36 #include <stdio.h>
34 #include <stdlib.h> 37 #include <stdlib.h>
35 #include <string.h> 38 #include <string.h>
36 #include <assert.h> 39 #include <assert.h>
37 #include "SDL_sound.h" 40 #include "SDL_sound.h"
38
39 #define __SDL_SOUND_INTERNAL__
40 #include "SDL_sound_internal.h"
41 41
42 static int WAV_init(void); 42 static int WAV_init(void);
43 static void WAV_quit(void); 43 static void WAV_quit(void);
44 static int WAV_open(Sound_Sample *sample, const char *ext); 44 static int WAV_open(Sound_Sample *sample, const char *ext);
45 static void WAV_close(Sound_Sample *sample); 45 static void WAV_close(Sound_Sample *sample);