summaryrefslogtreecommitdiffhomepage
path: root/Private/NewBoot/BootKit
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-09 08:46:17 +0100
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-09 08:46:17 +0100
commitacfebdfb9aec89a3c0914be8e9b0439a10120d5c (patch)
tree339a3d32cc03325b9557f0372d1f34c5ab328baf /Private/NewBoot/BootKit
parent5485b686c698f0de4a980686682f0b29f2cf9ecb (diff)
HCoreLdr: Fix compiler errors.
Diffstat (limited to 'Private/NewBoot/BootKit')
-rw-r--r--Private/NewBoot/BootKit/Arch/AHCI.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/Private/NewBoot/BootKit/Arch/AHCI.hxx b/Private/NewBoot/BootKit/Arch/AHCI.hxx
index 1f36ca00..32fe033c 100644
--- a/Private/NewBoot/BootKit/Arch/AHCI.hxx
+++ b/Private/NewBoot/BootKit/Arch/AHCI.hxx
@@ -20,17 +20,17 @@ class BDeviceAHCI final {
HCORE_COPY_DEFAULT(BDeviceAHCI);
struct AHCITraits final {
- SizeT mBase{1024};
- Boolean mErr{false};
- Boolean mDetected{false};
+ HCore::SizeT mBase{1024};
+ HCore::Boolean mErr{false};
+ HCore::Boolean mDetected{false};
operator bool() { return !mErr; }
};
operator bool() { return Leak().mDetected; }
- BDeviceAHCI& Read(WideChar* Buf, const SizeT& SecCount);
- BDeviceAHCI& Write(WideChar* Buf, const SizeT& SecCount);
+ BDeviceAHCI& Read(HCore::WideChar* Buf, const HCore::SizeT& SecCount);
+ BDeviceAHCI& Write(HCore::WideChar* Buf, const HCore::SizeT& SecCount);
AHCITraits& Leak();