|
|
| version 1.1, 2003/10/16 17:58:09 | version 1.3, 2003/11/28 08:01:33 |
|---|---|
| Line 1 | Line 1 |
| #ifndef __VERMOUTH_H | |
| #define __VERMOUTH_H | |
| typedef struct { | typedef struct { |
| UINT samprate; | UINT samprate; |
| } *MIDIMOD; | } *MIDIMOD; |
| Line 19 MIDIMOD midimod_create(UINT samprate); | Line 22 MIDIMOD midimod_create(UINT samprate); |
| void midimod_destroy(MIDIMOD hdl); | void midimod_destroy(MIDIMOD hdl); |
| void midimod_loadprogram(MIDIMOD hdl, UINT num); | void midimod_loadprogram(MIDIMOD hdl, UINT num); |
| void midimod_loadrhythm(MIDIMOD hdl, UINT num); | void midimod_loadrhythm(MIDIMOD hdl, UINT num); |
| void midimod_loadgm(MIDIMOD hdl); | |
| void midimod_loadall(MIDIMOD hdl); | |
| MIDIHDL midiout_create(MIDIMOD module, UINT worksize); | MIDIHDL midiout_create(MIDIMOD module, UINT worksize); |
| void midiout_destroy(MIDIHDL hdl); | void midiout_destroy(MIDIHDL hdl); |
| Line 32 void midiout_setgain(MIDIHDL hdl, int ga | Line 37 void midiout_setgain(MIDIHDL hdl, int ga |
| } | } |
| #endif | #endif |
| #endif | |