mirror of
https://github.com/pret/pokeruby.git
synced 2026-08-08 10:34:12 -05:00
25 lines
921 B
C
25 lines
921 B
C
#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 m4aMPlayAllStop(void);
|
|
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);
|
|
|
|
void m4aMPlayTempoControl(struct MusicPlayerInfo *mplayInfo, u16 tempo);
|
|
void m4aMPlayVolumeControl(struct MusicPlayerInfo *mplayInfo, u16 trackBits, u16 volume);
|
|
void m4aMPlayPitchControl(struct MusicPlayerInfo *mplayInfo, u16 trackBits, s16 pitch);
|
|
void m4aMPlayPanpotControl(struct MusicPlayerInfo *mplayInfo, u16 trackBits, s8 pan);
|
|
|
|
#endif //GUARD_M4A_H
|