diff options
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 { |
