|
|
| version 1.2, 2003/11/28 08:01:33 | version 1.5, 2006/12/10 11:14:31 |
|---|---|
| Line 38 typedef struct { | Line 38 typedef struct { |
| int tremolo_step; | int tremolo_step; |
| int vibrate_sweep; | int vibrate_sweep; |
| int vibrate_rate; | int vibrate_rate; |
| BYTE tremolo_depth; | UINT8 tremolo_depth; |
| BYTE vibrate_depth; | UINT8 vibrate_depth; |
| BYTE mode; | UINT8 mode; |
| BYTE panpot; | UINT8 panpot; |
| } _INSTLAYER, *INSTLAYER; | } _INSTLAYER, *INSTLAYER; |
| typedef struct { | typedef struct { |
| Line 49 typedef struct { | Line 49 typedef struct { |
| int freq; | int freq; |
| } _INSTRUMENT, *INSTRUMENT; | } _INSTRUMENT, *INSTRUMENT; |
| struct _miditoneloadparam; | |
| #ifdef __cplusplus | |
| extern "C" { | |
| #endif | |
| int inst_singleload(MIDIMOD mod, UINT bank, UINT num); | int inst_singleload(MIDIMOD mod, UINT bank, UINT num); |
| int inst_bankload(MIDIMOD mod, UINT bank); | int inst_bankload(MIDIMOD mod, UINT bank); |
| int inst_bankloadex(MIDIMOD mod, UINT bank, int (*cb)(struct _miditoneloadparam *param), struct _miditoneloadparam *param); | |
| void inst_bankfree(MIDIMOD mod, UINT bank); | void inst_bankfree(MIDIMOD mod, UINT bank); |
| UINT inst_gettones(MIDIMOD mod, UINT bank); | |
| #ifdef __cplusplus | |
| } | |
| #endif | |