- 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; ULONG Flags;
USHORT LoadCount; USHORT LoadCount;
USHORT TlsIndex; USHORT TlsIndex;
LIST_ENTRY HashLinks; union
PVOID SectionPointer; {
LIST_ENTRY HashLinks;
PVOID SectionPointer;
};
ULONG CheckSum; ULONG CheckSum;
ULONG TimeDateStamp; union
PVOID LoadedImports; {
ULONG TimeDateStamp;
PVOID LoadedImports;
};
PVOID EntryPointActivationContext; PVOID EntryPointActivationContext;
PVOID PatchInformation; PVOID PatchInformation;
#if defined(DBG) || defined(KDBG) #if defined(DBG) || defined(KDBG)