changeset 102:72502bed0aef

Added SHN entry.
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 03 Oct 2001 18:01:15 +0000
parents c08794028df4
children 706ec5842737
files SDL_sound.c
diffstat 1 files changed, 8 insertions(+), 0 deletions(-) [+]
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
 };