summaryrefslogtreecommitdiffhomepage
path: root/Private/KernelKit/FileManager.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'Private/KernelKit/FileManager.hpp')
-rw-r--r--Private/KernelKit/FileManager.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/Private/KernelKit/FileManager.hpp b/Private/KernelKit/FileManager.hpp
index 7da08cbb..c92c7409 100644
--- a/Private/KernelKit/FileManager.hpp
+++ b/Private/KernelKit/FileManager.hpp
@@ -129,9 +129,15 @@ namespace NewOS
SizeT Tell(NodePtr node) override;
bool Rewind(NodePtr node) override;
+ public:
+ void SetResourceFork(const char* forkName);
+ void SetDataFork(const char* forkName);
+
NewFSParser* GetImpl() noexcept;
private:
+ Char fDataFork[kNewFSForkNameLen] = {0};
+ Char fRsrcFork[kNewFSForkNameLen] = {0};
NewFSParser* fImpl{nullptr};
};