summaryrefslogtreecommitdiffhomepage
path: root/Private/KernelKit/FileManager.hpp
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-28 13:05:28 +0100
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-28 13:05:28 +0100
commit84cc6ff6f43b48383248282743efc514946db641 (patch)
treefa7f9099b87e235ba122d17b6a3b39234cd39883 /Private/KernelKit/FileManager.hpp
parent3d798c5fc738768493df925d1f5d72256f2dec4e (diff)
Kernel: :boom: breaking changes, Update API and the HCORE based
macros, rename HCore to NewOS. Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/KernelKit/FileManager.hpp')
-rw-r--r--Private/KernelKit/FileManager.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Private/KernelKit/FileManager.hpp b/Private/KernelKit/FileManager.hpp
index 87de3d9e..1ce8d629 100644
--- a/Private/KernelKit/FileManager.hpp
+++ b/Private/KernelKit/FileManager.hpp
@@ -39,7 +39,7 @@
/// refer to first enum.
#define kFileOpsCount 4
-namespace HCore {
+namespace NewOS {
enum {
kFileWriteAll = 100,
kFileReadAll = 101,
@@ -244,6 +244,6 @@ FileStream<Encoding, Class>::FileStream(const Encoding *path,
template <typename Encoding, typename Class>
FileStream<Encoding, Class>::~FileStream() = default;
-} // namespace HCore
+} // namespace NewOS
-#define node_cast(PTR) reinterpret_cast<HCore::NodePtr>(PTR)
+#define node_cast(PTR) reinterpret_cast<NewOS::NodePtr>(PTR)