Mercurial > SDL_sound_CoreAudio
comparison decoders/mikmod.c @ 536:8a814bbbedfa
Merged r544:545 from branches/stable-1.0: converted to UTF-8 encoding.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Thu, 17 Apr 2008 18:08:02 +0000 |
parents | 3e705c9180e5 |
children | 2e8907ff98e9 |
comparison
equal
deleted
inserted
replaced
534:a116d8f628a0 | 536:8a814bbbedfa |
---|---|
21 * Module player for SDL_sound. This driver handles anything MikMod does, and | 21 * Module player for SDL_sound. This driver handles anything MikMod does, and |
22 * is based on SDL_mixer. | 22 * is based on SDL_mixer. |
23 * | 23 * |
24 * Please see the file COPYING in the source's root directory. | 24 * Please see the file COPYING in the source's root directory. |
25 * | 25 * |
26 * This file written by Torbjörn Andersson (d91tan@Update.UU.SE) | 26 * This file written by Torbjörn Andersson (d91tan@Update.UU.SE) |
27 */ | 27 */ |
28 | 28 |
29 #if HAVE_CONFIG_H | 29 #if HAVE_CONFIG_H |
30 # include <config.h> | 30 # include <config.h> |
31 #endif | 31 #endif |
78 const Sound_DecoderFunctions __Sound_DecoderFunctions_MIKMOD = | 78 const Sound_DecoderFunctions __Sound_DecoderFunctions_MIKMOD = |
79 { | 79 { |
80 { | 80 { |
81 extensions_mikmod, | 81 extensions_mikmod, |
82 "Play modules through MikMod", | 82 "Play modules through MikMod", |
83 "Torbjörn Andersson <d91tan@Update.UU.SE>", | 83 "Torbjörn Andersson <d91tan@Update.UU.SE>", |
84 "http://mikmod.raphnet.net/" | 84 "http://mikmod.raphnet.net/" |
85 }, | 85 }, |
86 | 86 |
87 MIKMOD_init, /* init() method */ | 87 MIKMOD_init, /* init() method */ |
88 MIKMOD_quit, /* quit() method */ | 88 MIKMOD_quit, /* quit() method */ |