mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-26 15:44:53 -04:00
26 lines
576 B
C++
26 lines
576 B
C++
#ifndef JASBNKPARSER_H
|
|
#define JASBNKPARSER_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
namespace JASystem {
|
|
class TBasicBank;
|
|
namespace BNKParser {
|
|
struct THeader;
|
|
struct TInst;
|
|
struct TKeymap;
|
|
struct TOsc;
|
|
struct TPerc;
|
|
struct TPmap;
|
|
struct TRand;
|
|
struct TSense;
|
|
struct TVmap;
|
|
|
|
TBasicBank* createBasicBank(void*);
|
|
void findOscPtr(JASystem::TBasicBank*, JASystem::BNKParser::THeader*, JASystem::BNKParser::TOsc*);
|
|
void getOscTableEndPtr(short*);
|
|
};
|
|
}
|
|
|
|
#endif /* JASBNKPARSER_H */
|