Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 481 Bytes

readmidi.h

File metadata and controls

18 lines (13 loc) · 481 Bytes
 
Oct 21, 1999
Oct 21, 1999
1
2
3
4
5
/*
TiMidity -- Experimental MIDI to WAVE converter
Copyright (C) 1995 Tuukka Toivonen <toivonen@clinet.fi>
This program is free software; you can redistribute it and/or modify
Dec 31, 2011
Dec 31, 2011
6
7
it under the terms of the Perl Artistic License, available in COPYING.
*/
Oct 21, 1999
Oct 21, 1999
8
9
10
11
12
13
14
15
typedef struct {
MidiEvent event;
void *next;
} MidiEventList;
extern int32 quietchannels;
Jul 4, 2005
Jul 4, 2005
16
extern MidiEvent *read_midi_file(SDL_RWops *mrw, int32 *count, int32 *sp);
Aug 21, 2004
Aug 21, 2004
17
18
extern char midi_name[FILENAME_MAX+1];