diff options
author | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2017-03-05 07:35:03 +0000 |
---|---|---|
committer | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2017-03-05 07:35:03 +0000 |
commit | 4df18426822f135f71270a7e1d3aa8fc60a49e7e (patch) | |
tree | adad36be33278c66aa4d9600546d02590ee9ddd0 /include/m4a.h | |
parent | d12fd5c5ce574dd920a968794591afe7d42659fb (diff) |
resolve implicit declarations and enforce warnings as errors
Diffstat (limited to 'include/m4a.h')
-rw-r--r-- | include/m4a.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/m4a.h b/include/m4a.h new file mode 100644 index 000000000..949403885 --- /dev/null +++ b/include/m4a.h @@ -0,0 +1,18 @@ +#ifndef GUARD_M4A_H +#define GUARD_M4A_H + +#include "gba/m4a_internal.h" + +void m4aSoundVSync(void); + +void m4aSoundInit(void); +void m4aSoundMain(void); +void m4aSongNumStart(u16); +void m4aSongNumStop(u16 n); +void m4aMPlayContinue(struct MusicPlayerInfo *mplayInfo); +void m4aMPlayFadeOut(struct MusicPlayerInfo *mplayInfo, u16 speed); +void m4aMPlayFadeOutTemporarily(struct MusicPlayerInfo *mplayInfo, u16 speed); +void m4aMPlayFadeIn(struct MusicPlayerInfo *mplayInfo, u16 speed); +void m4aMPlayImmInit(struct MusicPlayerInfo *mplayInfo); + +#endif //GUARD_M4A_H |