mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
221f40e609
* add "global.h" to files that use it * add MSL_C includes to files that use them * remove dolphin includes from headers that don't need them * remove JSupport includes from headers that don't need them * remove JKernel includes from headers that don't need them * remove JUtility includes from headers that don't need them * remove J3D includes from headers that don't need them * remove J2D includes from headers that don't need them * remove JAudio2 includes from headers that don't need them * remove Z2AudioLib includes from headers that don't need them * remove JMessage includes from headers that don't need them * remove JParticle includes from headers that don't need them * remove SComponent includes from headers that don't need them * remove dol includes from headers that don't need them * sort includes
32 lines
602 B
C++
32 lines
602 B
C++
#ifndef J2DMANAGE_H
|
|
#define J2DMANAGE_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
class JSUInputStream;
|
|
|
|
struct J2DResReference {
|
|
/* 0x00 */ u16 mCount;
|
|
/* 0x02 */ u16 mOffsets[1];
|
|
|
|
/* 8030CF10 */ s8* getResReference(u16) const;
|
|
/* 8030CF44 */ char* getName(u16) const;
|
|
};
|
|
|
|
struct J2DataManageLink {
|
|
/* 0x00 */ void* mData;
|
|
/* 0x04 */ char* mName;
|
|
/* 0x08 */ J2DataManageLink* mNext;
|
|
};
|
|
|
|
class J2DDataManage {
|
|
private:
|
|
/* 0x00 */ J2DataManageLink* mList;
|
|
|
|
public:
|
|
/* 8030CE18 */ void* get(char const*);
|
|
/* 8030CE7C */ void* get(JSUInputStream*);
|
|
};
|
|
|
|
#endif /* J2DMANAGE_H */
|