diff options
| author | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-27 08:35:15 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-27 08:35:15 +0100 |
| commit | 6a18e607ffc4e83f2bd953c9de5c14f18e077df8 (patch) | |
| tree | c4fe27391a237361b2cfc3c59a88f28240e20461 /Private/FSKit | |
| parent | 3ba0a4aea3d57c67f316b183ca1efb2f6a3e5ee8 (diff) | |
Kernel: Update System API, add prefix to functions.
Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/FSKit')
| -rw-r--r-- | Private/FSKit/NewFS.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Private/FSKit/NewFS.hxx b/Private/FSKit/NewFS.hxx index 9645d29c..ffd198d2 100644 --- a/Private/FSKit/NewFS.hxx +++ b/Private/FSKit/NewFS.hxx @@ -167,7 +167,9 @@ class NewFSParser { HCORE_COPY_DEFAULT(NewFSParser); public: - virtual _Output NewFork* GetForkFrom(NewCatalog& catalog, const Char* name) = 0; + virtual void CreateFork(_Input NewCatalog& catalog, _Input NewFork& theFork) = 0; + + virtual _Output NewFork* FindFork(_Input NewCatalog& catalog, _Input const Char* name) = 0; virtual _Output NewCatalog* FindCatalog(const char* catalogName) = 0; |
