mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-25 23:35:08 -04:00
27 lines
601 B
C++
27 lines
601 B
C++
#ifndef JASWAVEBANKMGR_H
|
|
#define JASWAVEBANKMGR_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
namespace JASystem {
|
|
class TWaveArc;
|
|
class TWaveBank;
|
|
namespace Kernel {
|
|
class THeap;
|
|
}
|
|
namespace WaveBankMgr {
|
|
void init(int);
|
|
TWaveBank* getWaveBank(int);
|
|
bool registWaveBank(int, TWaveBank*);
|
|
bool registWaveBankWS(int, void*);
|
|
TWaveArc* getWaveArc(int, int);
|
|
bool loadWave(int, int, Kernel::THeap*);
|
|
bool eraseWave(int, int);
|
|
|
|
extern int sTableSize;
|
|
extern TWaveBank** sWaveBank;
|
|
}
|
|
}
|
|
|
|
#endif /* JASWAVEBANKMGR_H */
|