- Fix LDR_DATA_TABLE_ENTRY definition.

svn path=/trunk/; revision=16648
This commit is contained in:
Alex Ionescu 2005-07-19 20:55:13 +00:00
parent 4a454cb7d6
commit f25f86cc02

View file

@ -61,11 +61,17 @@ typedef struct _LDR_DATA_TABLE_ENTRY
ULONG Flags;
USHORT LoadCount;
USHORT TlsIndex;
LIST_ENTRY HashLinks;
PVOID SectionPointer;
union
{
LIST_ENTRY HashLinks;
PVOID SectionPointer;
};
ULONG CheckSum;
ULONG TimeDateStamp;
PVOID LoadedImports;
union
{
ULONG TimeDateStamp;
PVOID LoadedImports;
};
PVOID EntryPointActivationContext;
PVOID PatchInformation;
#if defined(DBG) || defined(KDBG)