diff options
| author | amlal <amlal@el-mahrouss-logic.com> | 2024-03-17 07:25:31 +0100 |
|---|---|---|
| committer | amlal <amlal@el-mahrouss-logic.com> | 2024-03-17 07:25:31 +0100 |
| commit | 45548d516ddf5e88bf80940365d151e1bd69c29f (patch) | |
| tree | f7347078e07a9d524e874f7f6c23622d538064bc /Private/Source/NewFS+FileManager.cxx | |
| parent | a4d4de6913fb7dd54847b0e5a004c3100bc02459 (diff) | |
HCR-14: A series of important fixes and improvements regarding the
kernel.
Signed-off-by: amlal <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/Source/NewFS+FileManager.cxx')
| -rw-r--r-- | Private/Source/NewFS+FileManager.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Private/Source/NewFS+FileManager.cxx b/Private/Source/NewFS+FileManager.cxx index e03cc471..5924385d 100644 --- a/Private/Source/NewFS+FileManager.cxx +++ b/Private/Source/NewFS+FileManager.cxx @@ -26,22 +26,22 @@ bool NewFilesystemManager::Remove(const char* node_name) { } NodePtr NewFilesystemManager::Create(const char* path) { - return node_cast(fImpl->CreateCatalog(path, 0, kCatalogKindFile)); + return node_cast(fImpl->CreateCatalog(path, 0, kNewFSCatalogKindFile)); } NodePtr NewFilesystemManager::CreateDirectory(const char* path) { - return node_cast(fImpl->CreateCatalog(path, 0, kCatalogKindDir)); + return node_cast(fImpl->CreateCatalog(path, 0, kNewFSCatalogKindDir)); } NodePtr NewFilesystemManager::CreateAlias(const char* path) { - return node_cast(fImpl->CreateCatalog(path, 0, kCatalogKindAlias)); + return node_cast(fImpl->CreateCatalog(path, 0, kNewFSCatalogKindAlias)); } -const char* NewFilesystemHelper::Root() { return kFilesystemRoot; } +const char* NewFilesystemHelper::Root() { return kNewFSRoot; } -const char* NewFilesystemHelper::UpDir() { return kFilesystemUpDir; } +const char* NewFilesystemHelper::UpDir() { return kNewFSUpDir; } -const char NewFilesystemHelper::Separator() { return kFilesystemSeparator; } +const char NewFilesystemHelper::Separator() { return kNewFSSeparator; } } // namespace HCore #endif // ifdef __FSKIT_NEWFS__ |
