From ba8ddb24e0ac6c7b1a617519a4bde9970610fbcc Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Mon, 11 Mar 2024 20:59:22 +0100 Subject: Kernel: Important changes, needs to be merged to master. - Add Logon executive. - Adding HCore System Call Interface (inside System.Core.dll) - Add _InOut and _StrictInOut inside HintKit. Signed-off-by: Amlal El Mahrouss Signed-off-by: amlal --- Public/Kits/System.Core/CoreAPI.hxx | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'Public/Kits/System.Core/CoreAPI.hxx') diff --git a/Public/Kits/System.Core/CoreAPI.hxx b/Public/Kits/System.Core/CoreAPI.hxx index 1cd48442..66d356d7 100644 --- a/Public/Kits/System.Core/CoreAPI.hxx +++ b/Public/Kits/System.Core/CoreAPI.hxx @@ -23,11 +23,16 @@ #define CA_CDECL __attribute__((cdecl)) #define CA_MSCALL __attribute__((ms_abi)) +#define CA_PASCALL CA_STDCALL + typedef __UINT8_TYPE__ BYTE; typedef __UINT16_TYPE__ WORD; typedef __UINT32_TYPE__ DWORD; typedef __UINT64_TYPE__ QWORD; +typedef void* PVOID; +typedef void VOID; + typedef __WCHAR_TYPE__ WCHAR; typedef WCHAR* PWCHAR; @@ -46,3 +51,6 @@ typedef WCHAR* PWCHAR; #ifdef __64x0__ # define _M_64000 5 #endif + +#define CA_STATIC static +#define CA_INLINE inline \ No newline at end of file -- cgit v1.2.3