diff SDL_sound.c @ 102:72502bed0aef

Added SHN entry.
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 03 Oct 2001 18:01:15 +0000
parents dfdf7b4e05bd
children 427541211bfd
line wrap: on
line diff
--- 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
 };