2017-03-05 07:35:03 +00:00
|
|
|
#ifndef GUARD_M4A_H
|
|
|
|
#define GUARD_M4A_H
|
|
|
|
|
|
|
|
#include "gba/m4a_internal.h"
|
|
|
|
|
|
|
|
void m4aSoundVSync(void);
|
2017-09-18 16:36:05 +00:00
|
|
|
void m4aSoundVSyncOn(void);
|
2017-03-05 07:35:03 +00:00
|
|
|
|
|
|
|
void m4aSoundInit(void);
|
|
|
|
void m4aSoundMain(void);
|
2019-01-01 01:39:41 +00:00
|
|
|
void m4aSongNumStart(u16 n);
|
|
|
|
void m4aSongNumStartOrChange(u16 n);
|
2017-03-05 07:35:03 +00:00
|
|
|
void m4aSongNumStop(u16 n);
|
2017-09-11 12:42:13 +00:00
|
|
|
void m4aMPlayAllStop(void);
|
2017-03-05 07:35:03 +00:00
|
|
|
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);
|
|
|
|
|
2018-08-15 04:56:11 +00:00
|
|
|
extern struct MusicPlayerInfo gMPlayInfo_BGM;
|
2018-01-18 17:53:31 +00:00
|
|
|
extern struct MusicPlayerInfo gMPlayInfo_SE1;
|
|
|
|
extern struct MusicPlayerInfo gMPlayInfo_SE2;
|
|
|
|
extern struct MusicPlayerInfo gMPlayInfo_SE3;
|
2017-11-13 06:01:27 +00:00
|
|
|
extern struct SoundInfo gSoundInfo;
|
2017-11-13 04:16:51 +00:00
|
|
|
|
2017-03-05 07:35:03 +00:00
|
|
|
#endif //GUARD_M4A_H
|