diff options
| author | navewindre <nw@moneybot.cc> | 2024-07-12 05:40:41 +0200 |
|---|---|---|
| committer | navewindre <nw@moneybot.cc> | 2024-07-12 05:40:41 +0200 |
| commit | 28f41cf689def99fb586bfca47b7e1786227a5a2 (patch) | |
| tree | 4a843c7785035ca548625ccf988ac924b8815f85 /src/winintern.h | |
| parent | 2ebf959ec02048c15323e1bbfc63faedcf5067b6 (diff) | |
base shit
Diffstat (limited to 'src/winintern.h')
| -rw-r--r-- | src/winintern.h | 17 |
1 files changed, 17 insertions, 0 deletions
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<DWORD64> InLoadOrderLinks; + _LIST_ENTRY_T<DWORD64> InMemoryOrderLinks; + // random missing field here ? ? + // _LIST_ENTRY_T<DWORD64> InInitializationOrderLinks; + DWORD64 DllBase; + DWORD64 EntryPoint; + union + { + DWORD SizeOfImage; + DWORD64 dummy01; + }; + _UNICODE_STRING_T<DWORD64> DllPath; + _UNICODE_STRING_T<DWORD64> FullDllName; +}; + template <class T> struct _LDR_DATA_TABLE_ENTRY_T { |
