From 98347089c7e4e2b306d25a0db77e00aa2ea50882 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Mon, 18 Mar 2024 20:01:38 +0100 Subject: unstable, secret: Very important changes done to the system API, add threading functions. Signed-off-by: Amlal El Mahrouss --- Public/Kits/System.Core/Defs.hxx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'Public/Kits/System.Core/Defs.hxx') 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 -- cgit v1.2.3