#pragma once #include "Winheaders.h" namespace blackbone { template struct _LDR_DATA_TABLE_ENTRY_W7 : _LDR_DATA_TABLE_ENTRY_BASE_T { _LIST_ENTRY_T ForwarderLinks; _LIST_ENTRY_T ServiceTagLinks; _LIST_ENTRY_T StaticLinks; T ContextInformation; uint32_t OriginalBase; LARGE_INTEGER LoadTime; }; template struct _RTL_INVERTED_FUNCTION_TABLE7 { uint32_t Count; uint32_t MaxCount; uint32_t Epoch; _RTL_INVERTED_FUNCTION_TABLE_ENTRY Entries[0x200]; }; }