mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
15 lines
247 B
C
15 lines
247 B
C
#ifndef _JAUDIO_BANKREAD_H
|
|
#define _JAUDIO_BANKREAD_H
|
|
|
|
#include "types.h"
|
|
|
|
typedef struct Bank_ Bank_;
|
|
|
|
Bank_* Bank_Test(u8*);
|
|
BOOL Bank_Regist(void*, u32);
|
|
BOOL Bank_Regist_Direct(void*, u32, u32);
|
|
void Bank_Init();
|
|
Bank_* Bank_Get(u32);
|
|
|
|
#endif
|