summaryrefslogtreecommitdiffhomepage
path: root/Private/ObjectKit
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-10 09:29:31 +0100
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-10 09:29:31 +0100
commita22ddb45201f40e41902b4c189c31c6418742c8a (patch)
treea1622d6199608c40c5aee56390ef24fe817ec4f9 /Private/ObjectKit
parent028d7057402051f809bbafa27aa278769732c56b (diff)
Very important changes.
- Update user land dlls output name. - Define process team methods in ProcessTeam.cxx. - Add rt_std in HALKit\AMD64. - Breaking changes in System.Graphics.dll: Replace all header files extensions starting with .hpp to .hxx. - Makefile don't rely on winasm anymore. Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/ObjectKit')
-rw-r--r--Private/ObjectKit/Object.hxx20
1 files changed, 20 insertions, 0 deletions
diff --git a/Private/ObjectKit/Object.hxx b/Private/ObjectKit/Object.hxx
new file mode 100644
index 00000000..1cb9e084
--- /dev/null
+++ b/Private/ObjectKit/Object.hxx
@@ -0,0 +1,20 @@
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
+
+#pragma once
+
+#include <NewKit/Defines.hpp>
+
+namespace HCore {
+/// \brief Object Manager handle.
+typedef struct Object {
+ Void(*Release)(Void);
+ Void(*Invoke)(Void);
+ Void(*QueryInterface)(Void);
+} Ojbect, *ObjectPtr;
+} // namespace HCore
+
+#define object_cast reinterpret_cast