summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel/KernelKit/LoaderInterface.h
diff options
context:
space:
mode:
authorAmlal <amlal.elmahrouss@icloud.com>2025-01-17 21:53:27 +0100
committerAmlal <amlal.elmahrouss@icloud.com>2025-01-17 21:53:27 +0100
commit595a52436c86b4cdc37f26d9562cd55ccdb1a4ec (patch)
tree55797470d1cf124a89ea08a84a63d51c2543d96e /dev/Kernel/KernelKit/LoaderInterface.h
parent3ef6ff432581766cf16223ed2492a8bd20f2d836 (diff)
META: Tweaks and patches applied to mostly the kernel.
Signed-off-by: Amlal <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Kernel/KernelKit/LoaderInterface.h')
-rw-r--r--dev/Kernel/KernelKit/LoaderInterface.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/Kernel/KernelKit/LoaderInterface.h b/dev/Kernel/KernelKit/LoaderInterface.h
index e9bd7d7d..25cceac9 100644
--- a/dev/Kernel/KernelKit/LoaderInterface.h
+++ b/dev/Kernel/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;
};