From 6ed8a39c1bd3083297b41e981a2bf4bdbe2abd1f Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Thu, 21 Nov 2024 08:50:57 +0100 Subject: IMP: Add UserProcessImage structure to hold the code/entrypoint of the process. IMP: Use IDLLObject instead of IPEFDLLObject. IMP: Refactor DeviceInterface to IDeviceObject. ADD: rt_jump_to_address when you want to use a custom stack. Signed-off-by: Amlal El Mahrouss --- dev/ZKAKit/StorageKit/AHCI.h | 2 +- dev/ZKAKit/StorageKit/ATA.h | 2 +- dev/ZKAKit/StorageKit/StorageKit.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'dev/ZKAKit/StorageKit') diff --git a/dev/ZKAKit/StorageKit/AHCI.h b/dev/ZKAKit/StorageKit/AHCI.h index a718dae7..f4c1d565 100644 --- a/dev/ZKAKit/StorageKit/AHCI.h +++ b/dev/ZKAKit/StorageKit/AHCI.h @@ -12,7 +12,7 @@ namespace Kernel { - class AHCIDeviceInterface : public DeviceInterface + class AHCIDeviceInterface ZKA_DEVICE { public: explicit AHCIDeviceInterface(void (*Out)(MountpointInterface* outpacket), diff --git a/dev/ZKAKit/StorageKit/ATA.h b/dev/ZKAKit/StorageKit/ATA.h index d70bc506..4c1aa632 100644 --- a/dev/ZKAKit/StorageKit/ATA.h +++ b/dev/ZKAKit/StorageKit/ATA.h @@ -14,7 +14,7 @@ namespace Kernel { /// @brief ATA device interface type. - class ATADeviceInterface : public DeviceInterface + class ATADeviceInterface : public IDeviceObject { public: explicit ATADeviceInterface(void (*Out)(MountpointInterface* outpacket), diff --git a/dev/ZKAKit/StorageKit/StorageKit.h b/dev/ZKAKit/StorageKit/StorageKit.h index 4b8b2411..34f8d47e 100644 --- a/dev/ZKAKit/StorageKit/StorageKit.h +++ b/dev/ZKAKit/StorageKit/StorageKit.h @@ -13,7 +13,7 @@ namespace Kernel { template - class DeviceInterface; + class IDeviceObject; class NVMEDeviceInterface; class AHCIDeviceInterface; -- cgit v1.2.3