From 375d0210dcb2070a12d916523f4a1dafff28360c Mon Sep 17 00:00:00 2001 From: Amlal EL Mahrouss Date: Tue, 2 Jul 2024 22:00:35 +0200 Subject: MHR-36: Change namespace name, got out of the codename stage. Signed-off-by: Amlal EL Mahrouss --- Kernel/KernelKit/MSDOS.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Kernel/KernelKit/MSDOS.hpp') diff --git a/Kernel/KernelKit/MSDOS.hpp b/Kernel/KernelKit/MSDOS.hpp index 36da42ad..12d67488 100644 --- a/Kernel/KernelKit/MSDOS.hpp +++ b/Kernel/KernelKit/MSDOS.hpp @@ -3,7 +3,7 @@ Copyright Zeta Electronics Corporation File: MSDOS.hpp - Purpose: MS-DOS header for NewOS. + Purpose: MS-DOS header for Kernel. Revision History: @@ -23,12 +23,12 @@ #define kMagMz0 'M' #define kMagMz1 'Z' -typedef NewOS::UInt32 DosWord; -typedef NewOS::Long DosLong; +typedef Kernel::UInt32 DosWord; +typedef Kernel::Long DosLong; typedef struct _DosHeader { - NewOS::UInt8 eMagic[2]; + Kernel::UInt8 eMagic[2]; DosWord eMagLen; DosWord ePagesCount; DosWord eCrlc; @@ -49,7 +49,7 @@ typedef struct _DosHeader DosLong eLfanew; } DosHeader, *DosHeaderPtr; -namespace NewOS +namespace Kernel { /// @brief Find the PE header inside the the blob. inline auto rt_find_exec_header(DosHeaderPtr ptrDos) -> VoidPtr @@ -63,6 +63,6 @@ namespace NewOS return (VoidPtr)(&ptrDos->eLfanew + 1); } -} // namespace NewOS +} // namespace Kernel #endif /* ifndef __MSDOS_EXEC__ */ -- cgit v1.2.3