diff options
| author | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-07-02 22:00:35 +0200 |
|---|---|---|
| committer | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-07-02 22:00:49 +0200 |
| commit | 375d0210dcb2070a12d916523f4a1dafff28360c (patch) | |
| tree | d0c217f529b8069ea659778c2ee9ca20aeba33a4 /Kernel/KernelKit/MSDOS.hpp | |
| parent | f1d3744829a661d1600c2f3bbdbdf679ee0bd0e1 (diff) | |
MHR-36: Change namespace name, got out of the codename stage.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Kernel/KernelKit/MSDOS.hpp')
| -rw-r--r-- | Kernel/KernelKit/MSDOS.hpp | 12 |
1 files changed, 6 insertions, 6 deletions
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__ */ |
