summaryrefslogtreecommitdiffhomepage
path: root/dev/ZKAKit/KernelKit/LoaderInterface.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-11-09 11:46:00 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-11-09 11:46:00 +0100
commitbe974217785b99c3f424f1550836e47442d53a11 (patch)
tree7ade5ac407edf246c748e2df5a90a26ae0360eed /dev/ZKAKit/KernelKit/LoaderInterface.h
parent3aeff1f8f141f771d5c895e1653dfdc106289ebc (diff)
IMP: DriveMgr initializes first before reading first block now.
IMP: AHCI has been improved and is getting fixed.
Diffstat (limited to 'dev/ZKAKit/KernelKit/LoaderInterface.h')
-rw-r--r--dev/ZKAKit/KernelKit/LoaderInterface.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/ZKAKit/KernelKit/LoaderInterface.h b/dev/ZKAKit/KernelKit/LoaderInterface.h
index 9323aec7..f5a34495 100644
--- a/dev/ZKAKit/KernelKit/LoaderInterface.h
+++ b/dev/ZKAKit/KernelKit/LoaderInterface.h
@@ -25,9 +25,9 @@ namespace Kernel
public:
virtual _Output ErrorOr<VoidPtr> GetBlob() = 0;
- virtual _Output const Char* AsString() = 0;
- virtual _Output const Char* MIME() = 0;
- virtual _Output const Char* Path() = 0;
+ virtual _Output const Char* AsString() = 0;
+ virtual _Output const Char* MIME() = 0;
+ virtual _Output const Char* Path() = 0;
virtual _Output ErrorOr<VoidPtr> FindStart() = 0;
virtual _Output VoidPtr FindSymbol(_Input const Char* name, _Input Int32 kind) = 0;
};