Mercurial > SDL_sound_CoreAudio
comparison decoders/shn.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 |
---|---|
39 * Please see the file LICENSE in the source's root directory. | 39 * Please see the file LICENSE in the source's root directory. |
40 * | 40 * |
41 * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) | 41 * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) |
42 */ | 42 */ |
43 | 43 |
44 #include "SDL_sound.h" | 44 #if HAVE_CONFIG_H |
45 | 45 # include <config.h> |
46 #define __SDL_SOUND_INTERNAL__ | 46 #endif |
47 #include "SDL_sound_internal.h" | |
48 | 47 |
49 #if (defined SOUND_SUPPORTS_SHN) | 48 #if (defined SOUND_SUPPORTS_SHN) |
50 | 49 |
51 #include <stdio.h> | 50 #include <stdio.h> |
52 #include <stdlib.h> | 51 #include <stdlib.h> |
53 #include <string.h> | 52 #include <string.h> |
54 #include <assert.h> | 53 #include <assert.h> |
54 | |
55 #include "SDL_sound.h" | |
56 | |
57 #define __SDL_SOUND_INTERNAL__ | |
58 #include "SDL_sound_internal.h" | |
55 | 59 |
56 | 60 |
57 static int SHN_init(void); | 61 static int SHN_init(void); |
58 static void SHN_quit(void); | 62 static void SHN_quit(void); |
59 static int SHN_open(Sound_Sample *sample, const char *ext); | 63 static int SHN_open(Sound_Sample *sample, const char *ext); |