diff options
| author | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-02-27 14:31:00 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-02-27 14:31:00 +0100 |
| commit | 9244027f113c5d60e5e7952214d1c253b4c203da (patch) | |
| tree | 57d9d6fb432601930b64f78cb7a852b33992a550 /Private | |
| parent | a33d9510bd36a9fdb98f291250a025cd4bec8bc1 (diff) | |
SOM: Worked on Compound objects inside system.
Signed-off-by: Amlal El Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Private')
| -rw-r--r-- | Private/CompilerKit/Version.hxx | 4 | ||||
| -rw-r--r-- | Private/NewKit/Defines.hpp | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/Private/CompilerKit/Version.hxx b/Private/CompilerKit/Version.hxx index 5f0f7e7a..66f9a749 100644 --- a/Private/CompilerKit/Version.hxx +++ b/Private/CompilerKit/Version.hxx @@ -1,4 +1,4 @@ #pragma once -#define BOOTLOADER_VERSION L"v1.12" -#define KERNEL_VERSION "v1.12" +#define BOOTLOADER_VERSION L"v1.13" +#define KERNEL_VERSION "v1.13" diff --git a/Private/NewKit/Defines.hpp b/Private/NewKit/Defines.hpp index 8af9aeb6..a64b816d 100644 --- a/Private/NewKit/Defines.hpp +++ b/Private/NewKit/Defines.hpp @@ -81,10 +81,14 @@ Args &&move(Args &&arg) { return static_cast<Args &&>(arg); } -/// Handle type. +typedef UIntPtr _HandleCls; + +/// @brief Looks like an objc class, because it takes inspiration from it. typedef struct _Handle { - UIntPtr _Unused; + _HandleCls _Cls; void Release(_Handle *); + _Handle* Init(); + _Handle* Sel(_Handle*, ...); } *Handle; } // namespace HCore |
