|
|
| version 1.2, 2004/01/09 04:36:02 | version 1.3, 2004/02/18 21:58:41 |
|---|---|
| Line 1 | Line 1 |
| #if defined(SUPPORT_WAVEMIX) | #error |
| enum { | |
| WAVEMIX_SEEK = 0, | |
| WAVEMIX_SEEK1, | |
| WAVEMIX_MAXTRACK | |
| }; | |
| enum { | |
| WMFLAG_L = 0x0001, | |
| WMFLAG_R = 0x0002, | |
| WMFLAG_LOOP = 0x0004 | |
| }; | |
| #ifdef __cplusplus | |
| extern "C" { | |
| #endif | |
| void wavemix_initialize(UINT rate); | |
| void wavemix_deinitialize(void); | |
| void wavemix_play(UINT num, BOOL loop); | |
| void wavemix_stop(UINT num); | |
| void wavemix_bind(void); | |
| #ifdef __cplusplus | |
| } | |
| #endif | |
| #endif | |