# HG changeset patch # User Ryan C. Gordon # Date 1002132075 0 # Node ID 72502bed0aef04d6c0d154e243b076910a2e8dc1 # Parent c08794028df4dab1bc394bd6bd91758c028ed549 Added SHN entry. diff -r c08794028df4 -r 72502bed0aef SDL_sound.c --- a/SDL_sound.c Wed Oct 03 17:59:14 2001 +0000 +++ b/SDL_sound.c Wed Oct 03 18:01:15 2001 +0000 @@ -72,6 +72,10 @@ extern const Sound_DecoderFunctions __Sound_DecoderFunctions_RAW; #endif +#if (defined SOUND_SUPPORTS_SHN) +extern const Sound_DecoderFunctions __Sound_DecoderFunctions_SHN; +#endif + typedef struct @@ -109,6 +113,10 @@ #if (defined SOUND_SUPPORTS_RAW) { 0, &__Sound_DecoderFunctions_RAW }, #endif + +#if (defined SOUND_SUPPORTS_SHN) + { 0, &__Sound_DecoderFunctions_SHN }, +#endif };