diff options
| author | Aetias <aetias@outlook.com> | 2025-01-18 09:44:01 +0100 |
|---|---|---|
| committer | Aetias <aetias@outlook.com> | 2025-01-18 09:44:01 +0100 |
| commit | 13108e3ae4e95a4a9a547a3074852099d299a6b9 (patch) | |
| tree | 21f3ce5b19514780bad5c1451718b4367f6fa47c /include/System/SysNew.hpp | |
| parent | 48bbd8bb7f008ac913cabb6f7faf4a47ad86878b (diff) | |
Move ARM9 Main documentation from Ghidra
Diffstat (limited to 'include/System/SysNew.hpp')
| -rw-r--r-- | include/System/SysNew.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/System/SysNew.hpp b/include/System/SysNew.hpp index 78f3b290..7e9b0cd8 100644 --- a/include/System/SysNew.hpp +++ b/include/System/SysNew.hpp @@ -2,8 +2,21 @@ #include "types.h"
+struct UnkStruct_0202e894 {
+ /* 00 */ u32 mId;
+ /* 04 */ unk8 mUnk_04[0x28];
+ /* 2c */
+};
+
+void *SysNew(UnkStruct_0202e894 *param1, s32 length, s32 param3);
+void SysDelete(void *ptr);
+void *func_0202e99c(s32 length);
+void *func_0202e9bc(s32 length);
+
class SysObject {
public:
static void *operator new(unsigned long length, u32 *id, u32 idLength);
+ static void *operator new[](unsigned long length, u32 *id, u32 idLength);
static void operator delete(void *ptr);
+ static void operator delete[](void *ptr);
};
|
