comparison decoders/voc.c @ 106:40de367eb59e

Changing my include structure to do this right.
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 03 Oct 2001 18:29:32 +0000
parents 103cfcb3c014
children dd95a12539fd
comparison
equal deleted inserted replaced
105:de42ca5599ac 106:40de367eb59e
35 * Please see the file LICENSE in the source's root directory. 35 * Please see the file LICENSE in the source's root directory.
36 * 36 *
37 * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) 37 * This file written by Ryan C. Gordon. (icculus@clutteredmind.org)
38 */ 38 */
39 39
40 #include "SDL_sound.h" 40 #if HAVE_CONFIG_H
41 41 # include <config.h>
42 #define __SDL_SOUND_INTERNAL__ 42 #endif
43 #include "SDL_sound_internal.h"
44 43
45 #if (defined SOUND_SUPPORTS_VOC) 44 #if (defined SOUND_SUPPORTS_VOC)
46 45
47 #include <stdio.h> 46 #include <stdio.h>
48 #include <stdlib.h> 47 #include <stdlib.h>
49 #include <string.h> 48 #include <string.h>
50 #include <assert.h> 49 #include <assert.h>
50
51 #include "SDL_sound.h"
52
53 #define __SDL_SOUND_INTERNAL__
54 #include "SDL_sound_internal.h"
51 55
52 static int VOC_init(void); 56 static int VOC_init(void);
53 static void VOC_quit(void); 57 static void VOC_quit(void);
54 static int VOC_open(Sound_Sample *sample, const char *ext); 58 static int VOC_open(Sound_Sample *sample, const char *ext);
55 static void VOC_close(Sound_Sample *sample); 59 static void VOC_close(Sound_Sample *sample);