mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-29 16:14:59 -04:00
24 lines
491 B
C
24 lines
491 B
C
#ifndef PLAYERCALL_H
|
|
#define PLAYERCALL_H
|
|
|
|
#include "types.h"
|
|
#include "jaudio_NES/audiostruct.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void ResetPlayerCallback();
|
|
extern s32 Jac_RegisterDspPlayerCallback(PlayerCallBack callback, void* arg);
|
|
extern s32 Jac_RegisterPlayerCallback(PlayerCallBack callback, void* arg);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/* C++ linkage, should these go in a different header file? */
|
|
extern void PlayerCallback();
|
|
extern void DspPlayerCallback();
|
|
|
|
#endif
|