mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +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;
|
ULONG Flags;
|
||||||
USHORT LoadCount;
|
USHORT LoadCount;
|
||||||
USHORT TlsIndex;
|
USHORT TlsIndex;
|
||||||
|
union
|
||||||
|
{
|
||||||
LIST_ENTRY HashLinks;
|
LIST_ENTRY HashLinks;
|
||||||
PVOID SectionPointer;
|
PVOID SectionPointer;
|
||||||
|
};
|
||||||
ULONG CheckSum;
|
ULONG CheckSum;
|
||||||
|
union
|
||||||
|
{
|
||||||
ULONG TimeDateStamp;
|
ULONG TimeDateStamp;
|
||||||
PVOID LoadedImports;
|
PVOID LoadedImports;
|
||||||
|
};
|
||||||
PVOID EntryPointActivationContext;
|
PVOID EntryPointActivationContext;
|
||||||
PVOID PatchInformation;
|
PVOID PatchInformation;
|
||||||
#if defined(DBG) || defined(KDBG)
|
#if defined(DBG) || defined(KDBG)
|
||||||
|
|
Loading…
Reference in a new issue