Add SysObject class

This commit is contained in:
Aetias
2023-11-11 12:50:14 +01:00
parent 5adaca82f2
commit 4aec27fee4
85 changed files with 1067 additions and 1047 deletions
+8
View File
@@ -0,0 +1,8 @@
#pragma once
#include "types.h"
class SysObject {
public:
static void* operator new(unsigned long length, u32 *id, u32 idLength);
};
+12
View File
@@ -0,0 +1,12 @@
#ifndef PH_TYPES_H
#define PH_TYPES_H
typedef unsigned int u32;
typedef unsigned short u16;
typedef unsigned char u8;
typedef int s32;
typedef short s16;
typedef char s8;
#endif