summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel/CFKit/Utils.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-23 19:13:48 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-23 19:15:17 +0100
commita13e1c0911c0627184bc38f18c7fdda64447b3ad (patch)
tree073a62c09bf216e85a3f310376640fa1805147f9 /dev/Kernel/CFKit/Utils.h
parent149fa096eb306d03686b3b67e813cf1a78e08cd0 (diff)
meta(kernel): Reworked repository's filesystem structure.
Removing useless parts of the project too. Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Kernel/CFKit/Utils.h')
-rw-r--r--dev/Kernel/CFKit/Utils.h55
1 files changed, 0 insertions, 55 deletions
diff --git a/dev/Kernel/CFKit/Utils.h b/dev/Kernel/CFKit/Utils.h
deleted file mode 100644
index b8f16164..00000000
--- a/dev/Kernel/CFKit/Utils.h
+++ /dev/null
@@ -1,55 +0,0 @@
-#ifndef CFKIT_UTILS_H
-#define CFKIT_UTILS_H
-
-#include <KernelKit/PE.h>
-#include <KernelKit/MSDOS.h>
-
-namespace CFKit
-{
- using namespace NeOS;
-
- /// @brief Finds the PE header inside the blob.
- inline auto ldr_find_exec_header(DosHeaderPtr ptrDos) -> LDR_EXEC_HEADER_PTR
- {
- if (!ptrDos)
- return nullptr;
-
- if (ptrDos->eMagic[0] != kMagMz0)
- return nullptr;
-
- if (ptrDos->eMagic[1] != kMagMz1)
- return nullptr;
-
- return (LDR_EXEC_HEADER_PTR)(VoidPtr)(&ptrDos->eLfanew + 1);
- }
-
- /// @brief Finds the PE optional header inside the blob.
- inline auto ldr_find_opt_exec_header(DosHeaderPtr ptrDos) -> LDR_OPTIONAL_HEADER_PTR
- {
- if (!ptrDos)
- return nullptr;
-
- auto exec = ldr_find_exec_header(ptrDos);
-
- if (!exec)
- return nullptr;
-
- return (LDR_OPTIONAL_HEADER_PTR)(VoidPtr)(&exec->Characteristics + 1);
- }
-
- /// @brief Finds the PE header inside the blob.
- /// @note overloaded function.
- inline auto ldr_find_exec_header(const Char* ptrDos) -> LDR_EXEC_HEADER_PTR
- {
- return ldr_find_exec_header((DosHeaderPtr)ptrDos);
- }
-
- /// @brief Finds the PE header inside the blob.
- /// @note overloaded function.
- inline auto ldr_find_opt_exec_header(const Char* ptrDos) -> LDR_OPTIONAL_HEADER_PTR
- {
- return ldr_find_opt_exec_header((DosHeaderPtr)ptrDos);
- }
-} // namespace CFKit
-
-#endif // ifndef CFKIT_UTILS_H