comparison decoders/wav.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
26 * Please see the file LICENSE in the source's root directory. 26 * Please see the file LICENSE in the source's root directory.
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 #include "SDL_sound.h"
32 32
33 #define __SDL_SOUND_INTERNAL__ 33 #define __SDL_SOUND_INTERNAL__
34 #include "SDL_sound_internal.h" 34 #include "SDL_sound_internal.h"
35
36 #ifdef SOUND_SUPPORTS_WAV
35 37
36 #include <stdio.h> 38 #include <stdio.h>
37 #include <stdlib.h> 39 #include <stdlib.h>
38 #include <string.h> 40 #include <string.h>
39 #include <assert.h> 41 #include <assert.h>
40 #include "SDL_sound.h"
41 42
42 static int WAV_init(void); 43 static int WAV_init(void);
43 static void WAV_quit(void); 44 static void WAV_quit(void);
44 static int WAV_open(Sound_Sample *sample, const char *ext); 45 static int WAV_open(Sound_Sample *sample, const char *ext);
45 static void WAV_close(Sound_Sample *sample); 46 static void WAV_close(Sound_Sample *sample);