comparison 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
comparison
equal deleted inserted replaced
101:c08794028df4 102:72502bed0aef
70 70
71 #if (defined SOUND_SUPPORTS_RAW) 71 #if (defined SOUND_SUPPORTS_RAW)
72 extern const Sound_DecoderFunctions __Sound_DecoderFunctions_RAW; 72 extern const Sound_DecoderFunctions __Sound_DecoderFunctions_RAW;
73 #endif 73 #endif
74 74
75 #if (defined SOUND_SUPPORTS_SHN)
76 extern const Sound_DecoderFunctions __Sound_DecoderFunctions_SHN;
77 #endif
78
75 79
76 80
77 typedef struct 81 typedef struct
78 { 82 {
79 int available; 83 int available;
106 { 0, &__Sound_DecoderFunctions_VOC }, 110 { 0, &__Sound_DecoderFunctions_VOC },
107 #endif 111 #endif
108 112
109 #if (defined SOUND_SUPPORTS_RAW) 113 #if (defined SOUND_SUPPORTS_RAW)
110 { 0, &__Sound_DecoderFunctions_RAW }, 114 { 0, &__Sound_DecoderFunctions_RAW },
115 #endif
116
117 #if (defined SOUND_SUPPORTS_SHN)
118 { 0, &__Sound_DecoderFunctions_SHN },
111 #endif 119 #endif
112 }; 120 };
113 121
114 122
115 123