diff options
| author | sik | 2017-03-05 20:57:11 -0300 |
|---|---|---|
| committer | sik | 2017-03-05 20:57:11 -0300 |
| commit | a679ba38190bfed6ae150a12e819ad7527c495d1 (patch) | |
| tree | ea4b189bce2732032998027f5dbcb75a1c0eea1d /c/echo.h | |
| parent | 2ad500e6d8a24ca09cbfc6618aea9c1cd3cc0e93 (diff) | |
Upgrade!
Diffstat (limited to 'c/echo.h')
| -rw-r--r-- | c/echo.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -19,15 +19,19 @@ enum { /* Echo status flags */ #define ECHO_STAT_BGM 0x0002 /* Background music is playing */ #define ECHO_STAT_SFX 0x0001 /* Sound effect is playing */ +#define ECHO_STAT_DIRBUSY 0x4000 /* Echo isn't done with direct events */ #define ECHO_STAT_BUSY 0x8000 /* Echo still didn't parse command */ /* Function prototypes */ void echo_init(const void **); void echo_play_bgm(const void *); void echo_stop_bgm(void); -void echo_resume_bgm(void); +/*void echo_resume_bgm(void);*/ void echo_play_sfx(const void *); void echo_stop_sfx(void); +void echo_play_direct(const void *); +void echo_set_volume(uint8_t); +void echo_set_volume_ex(const uint8_t *); void echo_set_pcm_rate(uint8_t); uint16_t echo_get_status(void); void echo_send_command(uint8_t); |
