Mercurial > SDL_sound_CoreAudio
comparison SDL_sound.c @ 209:e63b9393f6ce
Added ModPlug support.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Thu, 10 Jan 2002 01:18:54 +0000 |
parents | 47cc2de2ae36 |
children | 07d0939d40e7 |
comparison
equal
deleted
inserted
replaced
208:32376317eedb | 209:e63b9393f6ce |
---|---|
49 | 49 |
50 #if (defined SOUND_SUPPORTS_MP3) | 50 #if (defined SOUND_SUPPORTS_MP3) |
51 extern const Sound_DecoderFunctions __Sound_DecoderFunctions_MP3; | 51 extern const Sound_DecoderFunctions __Sound_DecoderFunctions_MP3; |
52 #endif | 52 #endif |
53 | 53 |
54 #if (defined SOUND_SUPPORTS_MOD) | 54 #if (defined SOUND_SUPPORTS_MIKMOD) |
55 extern const Sound_DecoderFunctions __Sound_DecoderFunctions_MOD; | 55 extern const Sound_DecoderFunctions __Sound_DecoderFunctions_MIKMOD; |
56 #endif | |
57 | |
58 #if (defined SOUND_SUPPORTS_MODPLUG) | |
59 extern const Sound_DecoderFunctions __Sound_DecoderFunctions_MODPLUG; | |
56 #endif | 60 #endif |
57 | 61 |
58 #if (defined SOUND_SUPPORTS_WAV) | 62 #if (defined SOUND_SUPPORTS_WAV) |
59 extern const Sound_DecoderFunctions __Sound_DecoderFunctions_WAV; | 63 extern const Sound_DecoderFunctions __Sound_DecoderFunctions_WAV; |
60 #endif | 64 #endif |
99 { | 103 { |
100 #if (defined SOUND_SUPPORTS_MP3) | 104 #if (defined SOUND_SUPPORTS_MP3) |
101 { 0, &__Sound_DecoderFunctions_MP3 }, | 105 { 0, &__Sound_DecoderFunctions_MP3 }, |
102 #endif | 106 #endif |
103 | 107 |
104 #if (defined SOUND_SUPPORTS_MOD) | 108 #if (defined SOUND_SUPPORTS_MIKMOD) |
105 { 0, &__Sound_DecoderFunctions_MOD }, | 109 { 0, &__Sound_DecoderFunctions_MIKMOD }, |
110 #endif | |
111 | |
112 #if (defined SOUND_SUPPORTS_MODPLUG) | |
113 { 0, &__Sound_DecoderFunctions_MODPLUG }, | |
106 #endif | 114 #endif |
107 | 115 |
108 #if (defined SOUND_SUPPORTS_WAV) | 116 #if (defined SOUND_SUPPORTS_WAV) |
109 { 0, &__Sound_DecoderFunctions_WAV }, | 117 { 0, &__Sound_DecoderFunctions_WAV }, |
110 #endif | 118 #endif |