|
|
| version 1.1, 2003/10/16 17:58:09 | version 1.9, 2011/02/04 01:10:14 |
|---|---|
| Line 1 | Line 1 |
| #ifndef __VERMOUTH_H | |
| #define __VERMOUTH_H | |
| #ifndef VERMOUTHCL | |
| #define VERMOUTHCL | |
| #endif | |
| #ifndef VERMOUTH_EXPORTS | |
| #define VEXTERN | |
| #define VEXPORT VERMOUTHCL | |
| #else | |
| #define VEXTERN __declspec(dllexport) | |
| #define VEXPORT WINAPI | |
| #endif | |
| typedef struct { | typedef struct { |
| UINT samprate; | UINT samprate; |
| } *MIDIMOD; | } *MIDIMOD; |
| Line 8 typedef struct { | Line 23 typedef struct { |
| UINT worksize; | UINT worksize; |
| } *MIDIHDL; | } *MIDIHDL; |
| typedef struct { | |
| void *userdata; | |
| UINT totaltones; | |
| UINT progress; | |
| UINT bank; | |
| UINT num; | |
| } MIDIOUTLAEXPARAM; | |
| typedef int (*FNMIDIOUTLAEXCB)(MIDIOUTLAEXPARAM *param); | |
| #ifdef __cplusplus | #ifdef __cplusplus |
| extern "C" { | extern "C" { |
| #endif | #endif |
| UINT midiout_getver(char *string, int leng); | VEXTERN UINT VEXPORT midiout_getver(char *string, int leng); |
| VEXTERN MIDIHDL VEXPORT midiout_create(MIDIMOD mod, UINT worksize); | |
| MIDIMOD midimod_create(UINT samprate); | VEXTERN void VEXPORT midiout_destroy(MIDIHDL hdl); |
| void midimod_destroy(MIDIMOD hdl); | VEXTERN void VEXPORT midiout_shortmsg(MIDIHDL hdl, UINT32 msg); |
| void midimod_loadprogram(MIDIMOD hdl, UINT num); | VEXTERN void VEXPORT midiout_longmsg(MIDIHDL hdl, const void *msg, UINT size); |
| void midimod_loadrhythm(MIDIMOD hdl, UINT num); | VEXTERN const SINT32 * VEXPORT midiout_get(MIDIHDL hdl, UINT *samples); |
| VEXTERN UINT VEXPORT midiout_get16(MIDIHDL hdl, SINT16 *pcm, UINT size); | |
| MIDIHDL midiout_create(MIDIMOD module, UINT worksize); | VEXTERN UINT VEXPORT midiout_get32(MIDIHDL hdl, SINT32 *pcm, UINT size); |
| void midiout_destroy(MIDIHDL hdl); | VEXTERN void VEXPORT midiout_setgain(MIDIHDL hdl, int gain); |
| void midiout_shortmsg(MIDIHDL hdl, UINT32 msg); | VEXTERN void VEXPORT midiout_setmoduleid(MIDIHDL hdl, UINT8 moduleid); |
| void midiout_longmsg(MIDIHDL hdl, const void *msg, UINT size); | VEXTERN void VEXPORT midiout_setportb(MIDIHDL hdl, MIDIHDL portb); |
| const SINT32 *midiout_get(MIDIHDL hdl, UINT *samples); | |
| UINT midiout_get32(MIDIHDL hdl, SINT32 *pcm, UINT size); | VEXTERN MIDIMOD VEXPORT midimod_create(UINT samprate); |
| void midiout_setgain(MIDIHDL hdl, int gain); | VEXTERN void VEXPORT midimod_destroy(MIDIMOD hdl); |
| VEXTERN void VEXPORT midimod_destroy(MIDIMOD hdl); | |
| VEXTERN BRESULT VEXPORT midimod_cfgload(MIDIMOD mod, const OEMCHAR *filename); | |
| VEXTERN void VEXPORT midimod_loadprogram(MIDIMOD hdl, UINT num); | |
| VEXTERN void VEXPORT midimod_loadrhythm(MIDIMOD hdl, UINT num); | |
| VEXTERN void VEXPORT midimod_loadgm(MIDIMOD hdl); | |
| VEXTERN void VEXPORT midimod_loadall(MIDIMOD hdl); | |
| VEXTERN void VEXPORT midimod_loadallex(MIDIMOD hdl, FNMIDIOUTLAEXCB cb, void *userdata); | |
| #ifdef __cplusplus | #ifdef __cplusplus |
| } | } |
| #endif | #endif |
| #endif | |