diff options
| author | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-04-06 14:52:33 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-04-06 14:52:33 +0200 |
| commit | 32f75625830660468287de0f213baee760fc6384 (patch) | |
| tree | aaa8286ee13a4188d826d4efd59482c7b1aa0e73 /Private/CFKit | |
| parent | 422b8029eba71b6fbb6b3dcb386b8e115bbd08ef (diff) | |
:boom: Breaking changes, disk API improvemenets and bringing support for
more drivers...
Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/CFKit')
| -rw-r--r-- | Private/CFKit/GUIDWrapper.hpp | 14 | ||||
| -rw-r--r-- | Private/CFKit/Property.hpp | 6 | ||||
| -rw-r--r-- | Private/CFKit/URL.hpp | 2 |
3 files changed, 11 insertions, 11 deletions
diff --git a/Private/CFKit/GUIDWrapper.hpp b/Private/CFKit/GUIDWrapper.hpp index 8a71c614..62bc6d73 100644 --- a/Private/CFKit/GUIDWrapper.hpp +++ b/Private/CFKit/GUIDWrapper.hpp @@ -23,10 +23,10 @@ union GUIDSequence { alignas(8) ULong u64[2]; struct { - alignas(8) UInt m_Ms1; - UShort m_Ms2; - UShort m_Ms3; - UChar m_Ms4[8]; + alignas(8) UInt fMs1; + UShort fMs2; + UShort fMs3; + UChar fMs4[8]; }; }; @@ -40,10 +40,10 @@ class GUID final { GUID(const GUID &) = default; public: - GUIDSequence &operator->() noexcept { return m_UUID; } - GUIDSequence &Leak() noexcept { return m_UUID; } + GUIDSequence &operator->() noexcept { return fUUID; } + GUIDSequence &Leak() noexcept { return fUUID; } private: - GUIDSequence m_UUID; + GUIDSequence fUUID; }; } // namespace NewOS::XRN diff --git a/Private/CFKit/Property.hpp b/Private/CFKit/Property.hpp index 84b4ed64..243580fc 100644 --- a/Private/CFKit/Property.hpp +++ b/Private/CFKit/Property.hpp @@ -17,7 +17,7 @@ using PropertyId = Int; class Property { public: - explicit Property(const StringView &sw) : m_sName(sw) {} + explicit Property(const StringView &sw) : fsName(sw) {} virtual ~Property() = default; @@ -29,8 +29,8 @@ class Property { const PropertyId &GetPropertyById(); private: - Ref<StringView> m_sName; - PropertyId m_Action; + Ref<StringView> fsName; + PropertyId fAction; }; template <SSizeT N> diff --git a/Private/CFKit/URL.hpp b/Private/CFKit/URL.hpp index 4131247c..748b3cf0 100644 --- a/Private/CFKit/URL.hpp +++ b/Private/CFKit/URL.hpp @@ -21,7 +21,7 @@ class Url final { Ref<ErrorOr<StringView>> Protocol() noexcept; private: - Ref<StringView> m_urlView; + Ref<StringView> fUrlView; }; ErrorOr<StringView> url_extract_location(const char *url); |
