mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
800047a854
* OK __ct__15JKRThreadSwitchFP7JKRHeap * OK createManager__15JKRThreadSwitchFP7JKRHeap * OK enter__15JKRThreadSwitchFP9JKRThreadi * OK callback__15JKRThreadSwitchFP8OSThreadP8OSThread * OK draw__15JKRThreadSwitchFP14JKRThreadName_P10JUTConsole * OK draw__15JKRThreadSwitchFP14JKRThreadName_ * OK __dt__15JKRThreadSwitchFv * JKRThread.cpp cleanup * Fixed tp.py and libelf, changed JUT_ASSERT macro and removed unused .s files. * Changed JKRThread access specifiers Co-authored-by: Julgodis <>
21 lines
356 B
C++
21 lines
356 B
C++
#ifndef JKRDISPOSER_H
|
|
#define JKRDISPOSER_H
|
|
|
|
#include "JSystem/JSupport/JSUList.h"
|
|
#include "dolphin/types.h"
|
|
|
|
class JKRHeap;
|
|
class JKRDisposer {
|
|
public:
|
|
JKRDisposer();
|
|
virtual ~JKRDisposer();
|
|
|
|
public:
|
|
/* 0x00 */ // vtable
|
|
/* 0x04 */ JKRHeap* mHeap;
|
|
/* 0x08 */ JSULink<JKRDisposer> mLink;
|
|
/* 0x18 */
|
|
};
|
|
|
|
#endif /* JKRDISPOSER_H */
|