summaryrefslogtreecommitdiffhomepage
path: root/Private/KernelKit/FileManager.hpp
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-04-02 18:29:24 +0200
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-04-02 18:29:24 +0200
commit96d7e324ae1657216e6bb49a82466977d43d9a89 (patch)
treed22a6cdaa51805be9dde4553d349cec53f4fc619 /Private/KernelKit/FileManager.hpp
parentf0811b1e200293c5ccc387d866d0ad49a41bba17 (diff)
SystemLib: Add TrueType library definitions.
NewKernel: Cleanup code in FileManager NewFilesystemManager. Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/KernelKit/FileManager.hpp')
-rw-r--r--Private/KernelKit/FileManager.hpp17
1 files changed, 1 insertions, 16 deletions
diff --git a/Private/KernelKit/FileManager.hpp b/Private/KernelKit/FileManager.hpp
index 2eabd4b3..630b21b6 100644
--- a/Private/KernelKit/FileManager.hpp
+++ b/Private/KernelKit/FileManager.hpp
@@ -124,26 +124,11 @@ class NewFilesystemManager final : public FilesystemManagerInterface {
NodePtr CreateDirectory(const char *path) override;
public:
- bool Remove(const char *node) override;
-
- public:
+ bool Remove(const char *path) override;
NodePtr Open(const char *path, const char *r) override;
-
- public:
Void Write(NodePtr node, VoidPtr data, Int32 flags) override;
-
- public:
- /**
- * NOTE: Write and Read are implemented using a custom NodePtr, retrieved
- * using OpenFork.
- */
-
VoidPtr Read(NodePtr node, Int32 flags, SizeT sz) override;
-
- public:
bool Seek(NodePtr node, SizeT off);
- public:
-
SizeT Tell(NodePtr node) override;
bool Rewind(NodePtr node) override;