summaryrefslogtreecommitdiffhomepage
path: root/Public/Kits/System.Core/Defs.hxx
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-18 20:01:38 +0100
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-18 20:01:38 +0100
commit98347089c7e4e2b306d25a0db77e00aa2ea50882 (patch)
treea0b3a1130bff9068055aea87f3e3b964dc9fce0a /Public/Kits/System.Core/Defs.hxx
parent4c714f2c24c5df78bae2f35c42c73107de4c8c71 (diff)
unstable, secret: Very important changes done to the system API, add
threading functions. Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Public/Kits/System.Core/Defs.hxx')
-rw-r--r--Public/Kits/System.Core/Defs.hxx19
1 files changed, 19 insertions, 0 deletions
diff --git a/Public/Kits/System.Core/Defs.hxx b/Public/Kits/System.Core/Defs.hxx
index ad615ef9..d1e5d483 100644
--- a/Public/Kits/System.Core/Defs.hxx
+++ b/Public/Kits/System.Core/Defs.hxx
@@ -45,12 +45,29 @@ typedef __UINT16_TYPE__ WORD;
typedef __UINT32_TYPE__ DWORD;
typedef __UINT64_TYPE__ QWORD;
+typedef char CHAR;
+typedef CHAR* PCHAR;
+
typedef void* PVOID;
typedef void VOID;
+typedef __UINTPTR_TYPE__ UINT_PTR;
+typedef __INTPTR_TYPE__ INT_PTR;
+typedef __UINT64_TYPE__ UINT64;
+typedef __INT64_TYPE__ INT64;
+typedef __UINT32_TYPE__ UINT32;
+typedef __INT32_TYPE__ INT32;
+
typedef __WCHAR_TYPE__ WCHAR;
typedef WCHAR* PWCHAR;
+typedef bool BOOL;
+
+#define TRUE true
+#define FALSE false
+
+#define PTR *
+
#define CA_UNREFERENCED_PARAMETER(e) ((VOID)e)
#ifdef __x86_64__
@@ -90,3 +107,5 @@ enum {
kProcessHeapCallCloseHandle,
kProcessHeapCallsCnt,
};
+
+#include <System.Core/HintBase.hxx>