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/src/Storage/AHCIDeviceInterface.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dev/ZKAKit/src/Storage/AHCIDeviceInterface.cc') diff --git a/dev/ZKAKit/src/Storage/AHCIDeviceInterface.cc b/dev/ZKAKit/src/Storage/AHCIDeviceInterface.cc index 9a591aaf..34b436e7 100644 --- a/dev/ZKAKit/src/Storage/AHCIDeviceInterface.cc +++ b/dev/ZKAKit/src/Storage/AHCIDeviceInterface.cc @@ -15,7 +15,7 @@ using namespace Kernel; AHCIDeviceInterface::AHCIDeviceInterface(void (*Out)(MountpointInterface* outpacket), void (*In)(MountpointInterface* inpacket), void (*Cleanup)(void)) - : DeviceInterface(Out, In), fCleanup(Cleanup) + : IDeviceObject(Out, In), fCleanup(Cleanup) { } -- cgit v1.2.3