diff options
| author | Amlal <amlalelmahrouss@icloud.com> | 2024-12-12 09:01:44 +0100 |
|---|---|---|
| committer | Amlal <amlalelmahrouss@icloud.com> | 2024-12-12 09:03:35 +0100 |
| commit | 71ea4e60ed0b30590a48fde31a74b05e3dd14196 (patch) | |
| tree | cdfccef70e20622ef1e5219e2c58fa6a2f5b30d9 /dev/ZKAKit/KernelKit/LoaderInterface.h | |
| parent | 5bd5a930755550d4fa7cb48c51aa8f9b9f3e5bae (diff) | |
NeFS.h: Add new fork types in NeFS specifications.
User.h/User.cc: Did code refactors in the User class.
Heap.cc: Also refactored the heap structure.
Signed-off-by: Amlal <amlalelmahrouss@icloud.com>
Diffstat (limited to 'dev/ZKAKit/KernelKit/LoaderInterface.h')
| -rw-r--r-- | dev/ZKAKit/KernelKit/LoaderInterface.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/ZKAKit/KernelKit/LoaderInterface.h b/dev/ZKAKit/KernelKit/LoaderInterface.h index 4c79aa47..c6e096b5 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; }; |
