mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-26 07:38:48 -04:00
23 lines
476 B
C++
23 lines
476 B
C++
#ifndef JAISOUNDTABLE_H
|
|
#define JAISOUNDTABLE_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
namespace JAInter {
|
|
namespace SoundTable {
|
|
void init(u8*, u32);
|
|
void getInfoPointer(u32);
|
|
void getInfoFormat(u32);
|
|
u8 getCategotyMax();
|
|
|
|
extern u8 mVersion;
|
|
extern u8 mCategotyMax;
|
|
extern s16* mSoundMax;
|
|
extern u32 mDatasize;
|
|
extern int* mPointerCategory;
|
|
extern u8* mAddress;
|
|
}
|
|
}
|
|
|
|
#endif /* JAISOUNDTABLE_H */
|