Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.4 KB

native_midi.h

File metadata and controls

40 lines (31 loc) · 1.4 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
native_midi: Hardware Midi support for the SDL_mixer library
Copyright (C) 2000 Florian 'Proff' Schulze
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Florian 'Proff' Schulze
florian.proff.schulze@gmx.net
*/
#ifndef _NATIVE_MIDI_H_
#define _NATIVE_MIDI_H_
Jul 9, 2005
Jul 9, 2005
26
27
#include <SDL_rwops.h>
28
29
typedef struct _NativeMidiSong NativeMidiSong;
Aug 19, 2001
Aug 19, 2001
30
int native_midi_detect();
31
NativeMidiSong *native_midi_loadsong(char *midifile);
Jul 9, 2005
Jul 9, 2005
32
NativeMidiSong *native_midi_loadsong_RW(SDL_RWops *rw);
33
34
35
36
37
void native_midi_freesong(NativeMidiSong *song);
void native_midi_start(NativeMidiSong *song);
void native_midi_stop();
int native_midi_active();
void native_midi_setvolume(int volume);
Sep 26, 2009
Sep 26, 2009
38
const char *native_midi_error(void);
39
40
#endif /* _NATIVE_MIDI_H_ */