Mercurial > SDL_sound_CoreAudio
comparison decoders/midi.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 |
---|---|
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 */ |