j2dmanage

This commit is contained in:
lepelog
2021-12-10 20:52:41 +01:00
parent 202e3c51c0
commit fdd13a5797
6 changed files with 74 additions and 233 deletions
+13 -2
View File
@@ -5,11 +5,22 @@
#include "dolphin/types.h"
struct J2DResReference {
/* 8030CF10 */ void getResReference(u16) const;
/* 8030CF44 */ void getName(u16) const;
u16 mCount;
u16 mOffsets[1];
/* 8030CF10 */ s8* getResReference(u16) const;
/* 8030CF44 */ char* getName(u16) const;
};
struct J2DataManageLink {
void* mData;
char* mName;
J2DataManageLink* mNext;
};
class J2DDataManage {
private:
J2DataManageLink* mList;
public:
/* 8030CE18 */ void* get(char const*);
/* 8030CE7C */ void* get(JSUInputStream*);