native_midi.h

来自「SDL_mixer 是一个基于 SDL 的混音器」· C头文件 代码 · 共 41 行

H
41
字号
/*    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_#include <SDL_rwops.h>typedef struct _NativeMidiSong NativeMidiSong;int native_midi_detect();NativeMidiSong *native_midi_loadsong(char *midifile);NativeMidiSong *native_midi_loadsong_RW(SDL_RWops *rw);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);char *native_midi_error();#endif /* _NATIVE_MIDI_H_ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?