diff SDL_sound.c @ 322:31cc49d7d0ce

MacOS fixes.
author Ryan C. Gordon <icculus@icculus.org>
date Mon, 29 Apr 2002 06:12:47 +0000
parents d62c05322a3e
children 5a72981b8cba
line wrap: on
line diff
--- a/SDL_sound.c	Mon Apr 29 06:12:20 2002 +0000
+++ b/SDL_sound.c	Mon Apr 29 06:12:47 2002 +0000
@@ -99,7 +99,9 @@
 extern const Sound_DecoderFunctions  __Sound_DecoderFunctions_FLAC;
 #endif
 
-
+#if (defined SOUND_SUPPORTS_QUICKTIME)
+extern const Sound_DecoderFunctions  __Sound_DecoderFunctions_QuickTime;
+#endif
 
 typedef struct
 {
@@ -161,6 +163,10 @@
     { 0, &__Sound_DecoderFunctions_MIDI },
 #endif
 
+#if (defined SOUND_SUPPORTS_QUICKTIME)
+    { 0, &__Sound_DecoderFunctions_QuickTime },
+#endif
+
     { 0, NULL }
 };