From 7821342e0fd790c0933f3e2579659b09aaa25098 Mon Sep 17 00:00:00 2001 From: Amlal Date: Sun, 26 Jan 2025 12:19:50 +0100 Subject: ADD: Starting code in 0x7c000 on AMD64 APs. (HalApplicationProcessor.cc) ADD: Add a MUST_PASS (debug) for IPCMsg.cc Signed-off-by: Amlal --- dev/Kernel/CFKit/Property.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'dev/Kernel/CFKit') 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 #include #include +#include -#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 fGUID{}; }; template -- cgit v1.2.3