|
|
| version 1.1.1.1, 2003/10/16 17:58:47 | version 1.6, 2005/02/16 09:31:55 |
|---|---|
| Line 19 void soundmng_stop(void); | Line 19 void soundmng_stop(void); |
| void soundmng_sync(void); | void soundmng_sync(void); |
| void soundmng_setreverse(BOOL reverse); | void soundmng_setreverse(BOOL reverse); |
| BOOL soundmng_pcmplay(UINT num, BOOL loop); | BRESULT soundmng_pcmplay(UINT num, BOOL loop); |
| void soundmng_pcmstop(UINT num); | void soundmng_pcmstop(UINT num); |
| #ifdef __cplusplus | |
| } | |
| #endif | |
| // ---- for windows | // ---- for windows |
| BOOL soundmng_initialize(void); | BRESULT soundmng_initialize(void); |
| void soundmng_deinitialize(void); | void soundmng_deinitialize(void); |
| void soundmng_pcmload(UINT num, const char *filename, UINT type); | void soundmng_pcmload(UINT num, const OEMCHAR *filename, UINT type); |
| void soundmng_pcmvolume(UINT num, int volume); | void soundmng_pcmvolume(UINT num, int volume); |
| void soundmng_enable(void); | enum { |
| void soundmng_disable(void); | SNDPROC_MASTER = 0, |
| SNDPROC_MAIN, | |
| SNDPROC_TOOL, | |
| SNDPROC_SUBWIND | |
| }; | |
| #ifdef __cplusplus | void soundmng_enable(UINT proc); |
| } | void soundmng_disable(UINT proc); |
| #endif | |