summaryrefslogtreecommitdiffhomepage
path: root/dev/kernel/CFKit/Utils.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-24 03:02:43 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-11-24 03:02:43 +0100
commit83d870e58457a1d335a1d9b9966a6a1887cc297b (patch)
tree72888f88c7728c82f3f6df1f4f70591de15eab36 /dev/kernel/CFKit/Utils.h
parentab37adbacf0f33845804c788b39680cd754752a8 (diff)
feat! breaking changes on kernel sources.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/kernel/CFKit/Utils.h')
-rw-r--r--dev/kernel/CFKit/Utils.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/dev/kernel/CFKit/Utils.h b/dev/kernel/CFKit/Utils.h
deleted file mode 100644
index 247ad5fb..00000000
--- a/dev/kernel/CFKit/Utils.h
+++ /dev/null
@@ -1,48 +0,0 @@
-#ifndef CFKIT_UTILS_H
-#define CFKIT_UTILS_H
-
-#include <KernelKit/MSDOS.h>
-#include <KernelKit/PE.h>
-
-/// @brief CFKit
-namespace Kernel::CF {
-/// @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;
-
-#ifdef __NE_AMD64__
- return (LDR_EXEC_HEADER_PTR) (VoidPtr) (&ptrDos->eLfanew + 1);
-#else
- return (LDR_EXEC_HEADER_PTR) (VoidPtr) (&ptrDos->eLfanew);
-#endif
-}
-
-/// @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 Kernel::CF
-
-#endif // ifndef CFKIT_UTILS_H