comparison decoders/midi.c @ 535:45ee760a6f5a stable-1.0

Converted all text encoding from ISO-8859-1 to UTF-8.
author Ryan C. Gordon <icculus@icculus.org>
date Thu, 17 Apr 2008 18:06:53 +0000
parents cbb15ecf423a
children
comparison
equal deleted inserted replaced
533:cad2940e992f 535:45ee760a6f5a
23 * This driver handles MIDI data through a stripped-down version of TiMidity. 23 * This driver handles MIDI data through a stripped-down version of TiMidity.
24 * See the documentation in the timidity subdirectory. 24 * See the documentation in the timidity subdirectory.
25 * 25 *
26 * Please see the file COPYING in the source's root directory. 26 * Please see the file COPYING in the source's root directory.
27 * 27 *
28 * This file written by Torbjörn Andersson. (d91tan@Update.UU.SE) 28 * This file written by Torbjörn Andersson. (d91tan@Update.UU.SE)
29 */ 29 */
30 30
31 #if HAVE_CONFIG_H 31 #if HAVE_CONFIG_H
32 # include <config.h> 32 # include <config.h>
33 #endif 33 #endif
58 const Sound_DecoderFunctions __Sound_DecoderFunctions_MIDI = 58 const Sound_DecoderFunctions __Sound_DecoderFunctions_MIDI =
59 { 59 {
60 { 60 {
61 extensions_midi, 61 extensions_midi,
62 "MIDI decoder, using a subset of TiMidity", 62 "MIDI decoder, using a subset of TiMidity",
63 "Torbjörn Andersson <d91tan@Update.UU.SE>", 63 "Torbjörn Andersson <d91tan@Update.UU.SE>",
64 "http://www.icculus.org/SDL_sound/" 64 "http://www.icculus.org/SDL_sound/"
65 }, 65 },
66 66
67 MIDI_init, /* init() method */ 67 MIDI_init, /* init() method */
68 MIDI_quit, /* quit() method */ 68 MIDI_quit, /* quit() method */