summaryrefslogtreecommitdiffhomepage
path: root/dev/ZKAKit/KernelKit/LoaderInterface.h
diff options
context:
space:
mode:
authorAmlal <amlalelmahrouss@icloud.com>2024-11-30 19:48:33 +0100
committerAmlal <amlalelmahrouss@icloud.com>2024-11-30 19:48:33 +0100
commit98b24c3a90d3c97a06cb553d08369943605efbe0 (patch)
treed5762818e678ec0047d03ccea54108873e6c5f94 /dev/ZKAKit/KernelKit/LoaderInterface.h
parentb2588beae1dceeb0a0c5e95976874c6d6d53c703 (diff)
META: Add new error code for CD trays. New Power mgmt and CD-ROM API. Also format code.
Signed-off-by: Amlal <amlalelmahrouss@icloud.com>
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 a95aae4e..dc9bc477 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;
};