diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-08-23 18:20:04 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-08-23 18:20:04 +0200 |
| commit | bac8c9a8306e1582ef24ba68a412a29674c97775 (patch) | |
| tree | 956155581fdb44fb6c82673a5f71a00cc6f4c89c /dev/ZBA/BootKit | |
| parent | 73e0c81b5c8325db7aaec773fcc657f3ef50b0b8 (diff) | |
[IMP/WIP] AHCI disk driver for kernel DLL.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/ZBA/BootKit')
| -rw-r--r-- | dev/ZBA/BootKit/BootKit.hxx | 2 | ||||
| -rw-r--r-- | dev/ZBA/BootKit/Device.hxx | 2 | ||||
| -rw-r--r-- | dev/ZBA/BootKit/HW/ATA.hxx | 2 | ||||
| -rw-r--r-- | dev/ZBA/BootKit/HW/SATA.hxx | 2 | ||||
| -rw-r--r-- | dev/ZBA/BootKit/Vendor/Qr.hxx | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/dev/ZBA/BootKit/BootKit.hxx b/dev/ZBA/BootKit/BootKit.hxx index 166eec5d..59b222c9 100644 --- a/dev/ZBA/BootKit/BootKit.hxx +++ b/dev/ZBA/BootKit/BootKit.hxx @@ -206,7 +206,7 @@ public: ~BDiskFormatFactory() = default; - NEWOS_COPY_DELETE(BDiskFormatFactory); + ZKA_COPY_DELETE(BDiskFormatFactory); /// @brief Format disk. /// @param Partition Name diff --git a/dev/ZBA/BootKit/Device.hxx b/dev/ZBA/BootKit/Device.hxx index 21955b79..dd11c78d 100644 --- a/dev/ZBA/BootKit/Device.hxx +++ b/dev/ZBA/BootKit/Device.hxx @@ -17,7 +17,7 @@ public: explicit Device() = default; virtual ~Device() = default; - NEWOS_MOVE_DEFAULT(Device); + ZKA_MOVE_DEFAULT(Device); struct Trait { diff --git a/dev/ZBA/BootKit/HW/ATA.hxx b/dev/ZBA/BootKit/HW/ATA.hxx index 2c6416f8..14ee7964 100644 --- a/dev/ZBA/BootKit/HW/ATA.hxx +++ b/dev/ZBA/BootKit/HW/ATA.hxx @@ -23,7 +23,7 @@ public: explicit BootDeviceATA() noexcept; ~BootDeviceATA() = default; - NEWOS_COPY_DEFAULT(BootDeviceATA); + ZKA_COPY_DEFAULT(BootDeviceATA); enum { diff --git a/dev/ZBA/BootKit/HW/SATA.hxx b/dev/ZBA/BootKit/HW/SATA.hxx index 4704ece4..63e40fa1 100644 --- a/dev/ZBA/BootKit/HW/SATA.hxx +++ b/dev/ZBA/BootKit/HW/SATA.hxx @@ -15,7 +15,7 @@ public: explicit BootDeviceSATA() noexcept; ~BootDeviceSATA() = default; - NEWOS_COPY_DEFAULT(BootDeviceSATA); + ZKA_COPY_DEFAULT(BootDeviceSATA); struct SATATrait final { diff --git a/dev/ZBA/BootKit/Vendor/Qr.hxx b/dev/ZBA/BootKit/Vendor/Qr.hxx index e7d82547..a2af4367 100644 --- a/dev/ZBA/BootKit/Vendor/Qr.hxx +++ b/dev/ZBA/BootKit/Vendor/Qr.hxx @@ -963,7 +963,7 @@ namespace qr explicit QrDelegate() = default; ~QrDelegate() = default; - NEWOS_COPY_DEFAULT(QrDelegate); + ZKA_COPY_DEFAULT(QrDelegate); /// @brief Draw method delegate. template <int V> |
