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/HCoreBase.hxx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Public/Kits/System.Core/HCoreBase.hxx (limited to 'Public/Kits/System.Core/HCoreBase.hxx') diff --git a/Public/Kits/System.Core/HCoreBase.hxx b/Public/Kits/System.Core/HCoreBase.hxx new file mode 100644 index 00000000..c8a3a99c --- /dev/null +++ b/Public/Kits/System.Core/HCoreBase.hxx @@ -0,0 +1,13 @@ +/** =========================================== + (C) Mahrouss Logic + ===========================================*/ + +#pragma once + +#include + +typedef struct HcObject { + void(*Release)(void); + void(*Invoke)(void); + void(*QueryInterface)(void); +} *HcObjectPtr; -- cgit v1.2.3