mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
- Fix LDR_DATA_TABLE_ENTRY definition.
svn path=/trunk/; revision=16648
This commit is contained in:
parent
4a454cb7d6
commit
f25f86cc02
1 changed files with 10 additions and 4 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue