mirror of
https://github.com/zeldaret/tp
synced 2026-05-24 07:11:06 -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
22 lines
542 B
C++
22 lines
542 B
C++
#ifndef JUTRESOURCE_H
|
|
#define JUTRESOURCE_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
class JKRArchive;
|
|
class JSUInputStream;
|
|
|
|
class JUTResReference {
|
|
private:
|
|
u8 unk_0x0[0x101];
|
|
|
|
public:
|
|
JUTResReference() { unk_0x0[0] = 0; }
|
|
/* 802DE078 */ void* getResource(JSUInputStream*, u32, JKRArchive*);
|
|
/* 802DE120 */ void* getResource(void const*, u32, JKRArchive*);
|
|
/* 802DE1BC */ void* getResource(u32, JKRArchive*);
|
|
};
|
|
// only rough size known due to getPointer__7J2DPaneFP20JSURandomInputStreamUlP10JKRArchive
|
|
|
|
#endif /* JUTRESOURCE_H */
|