mirror of
https://github.com/zeldaret/tp
synced 2026-06-21 16:37:02 -04:00
635fbc34ec
* Added JSUList, JKRDisposer, and JKRHeap. JSUList: Decompiled JSUPtrLink and JSUPtrList with their respected functions. The templated class JSUList is left. JKRDisposer: Constructor matched but the destructor is close but not yet a match. JKRHeap: No functions matches yet. JKRHeap.cpp now includes "operator delete" which makes it possible to forward compile destructors. * moved files from src/ to libs/
20 lines
278 B
C++
20 lines
278 B
C++
#ifndef __JKRDISPOSER_H__
|
|
#define __JKRDISPOSER_H__
|
|
|
|
#include "dolphin/types.h"
|
|
#include "JSupport/JSUList.h"
|
|
|
|
class JKRHeap;
|
|
class JKRDisposer {
|
|
public:
|
|
JKRDisposer();
|
|
~JKRDisposer();
|
|
|
|
public:
|
|
void** __vt;
|
|
JKRHeap* heap;
|
|
JSUPtrLink ptr_link;
|
|
};
|
|
|
|
#endif
|