From 28f41cf689def99fb586bfca47b7e1786227a5a2 Mon Sep 17 00:00:00 2001 From: navewindre Date: Fri, 12 Jul 2024 05:40:41 +0200 Subject: base shit --- src/winintern.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'src/winintern.h') diff --git a/src/winintern.h b/src/winintern.h index 458a832..c8e155a 100644 --- a/src/winintern.h +++ b/src/winintern.h @@ -72,6 +72,23 @@ struct _TEB_T_ //rest of the structure is not defined for now, as it is not needed }; +// ? ? ? ? ? +struct _LDR_DATA_TABLE_ENTRY64_T { + _LIST_ENTRY_T InLoadOrderLinks; + _LIST_ENTRY_T InMemoryOrderLinks; + // random missing field here ? ? + // _LIST_ENTRY_T InInitializationOrderLinks; + DWORD64 DllBase; + DWORD64 EntryPoint; + union + { + DWORD SizeOfImage; + DWORD64 dummy01; + }; + _UNICODE_STRING_T DllPath; + _UNICODE_STRING_T FullDllName; +}; + template struct _LDR_DATA_TABLE_ENTRY_T { -- cgit v1.2.3