diff options
| author | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-11 20:59:22 +0100 |
|---|---|---|
| committer | amlal <amlal@el-mahrouss-logic.com> | 2024-03-11 21:05:13 +0100 |
| commit | ba8ddb24e0ac6c7b1a617519a4bde9970610fbcc (patch) | |
| tree | c741ec82a267e44e2a362399ed20439184504ace /Public/Kits/System.Core/CoreAPI.hxx | |
| parent | 5468ca71a59c9e24c1d392554e8f97f0c1705394 (diff) | |
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 <amlal@el-mahrouss-logic.com>
Signed-off-by: amlal <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Public/Kits/System.Core/CoreAPI.hxx')
| -rw-r--r-- | Public/Kits/System.Core/CoreAPI.hxx | 8 |
1 files changed, 8 insertions, 0 deletions
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 |
