summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel/CFKit
diff options
context:
space:
mode:
authorAmlal <amlal.elmahrouss@icloud.com>2025-01-26 12:19:50 +0100
committerAmlal <amlal.elmahrouss@icloud.com>2025-01-26 12:19:50 +0100
commit7821342e0fd790c0933f3e2579659b09aaa25098 (patch)
treea7c5acd8bfa93a6660ef869dfbdafafae0aeb50a /dev/Kernel/CFKit
parentc0cd417753523f60d9ef414b345f791b068071ed (diff)
ADD: Starting code in 0x7c000 on AMD64 APs. (HalApplicationProcessor.cc)
ADD: Add a MUST_PASS (debug) for IPCMsg.cc Signed-off-by: Amlal <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Kernel/CFKit')
-rw-r--r--dev/Kernel/CFKit/Property.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/dev/Kernel/CFKit/Property.h b/dev/Kernel/CFKit/Property.h
index 162b757b..69ec13f2 100644
--- a/dev/Kernel/CFKit/Property.h
+++ b/dev/Kernel/CFKit/Property.h
@@ -11,8 +11,9 @@
#include <NewKit/Defines.h>
#include <NewKit/Function.h>
#include <NewKit/KString.h>
+#include <CFKit/GUIDWrapper.h>
-#define kMaxPropLen 255
+#define kMaxPropLen (255U)
namespace CFKit
{
@@ -22,7 +23,7 @@ namespace CFKit
using PropertyId = UIntPtr;
/// @brief Kernel property class.
- /// @example \Properties\SmpCores or \Properties\KernelVersion
+ /// @example /Properties/SmpCoreClass or /Properties/KernelVersionClass
class Property
{
public:
@@ -38,8 +39,9 @@ namespace CFKit
KString& GetKey();
private:
- KString fName{kMaxPropLen};
- PropertyId fValue{0UL};
+ KString fName{kMaxPropLen};
+ PropertyId fValue{0UL};
+ Ref<XRN::GUID> fGUID{};
};
template <SizeT N>