NDK: fix and update LDR_DATA_TABLE_ENTRY

svn path=/branches/ros-amd64-bringup/; revision=39052
This commit is contained in:
Timo Kreuzer
2009-01-23 22:13:08 +00:00
parent da3e5b3190
commit af71294b61
+10 -2
View File
@@ -112,9 +112,12 @@ typedef struct _LDR_DATA_TABLE_ENTRY
union
{
LIST_ENTRY HashLinks;
PVOID SectionPointer;
struct
{
PVOID SectionPointer;
ULONG CheckSum;
};
};
ULONG CheckSum;
union
{
ULONG TimeDateStamp;
@@ -122,6 +125,11 @@ typedef struct _LDR_DATA_TABLE_ENTRY
};
PVOID EntryPointActivationContext;
PVOID PatchInformation;
#if (NTDDI_VERSION >= NTDDI_LONGHORN)
LIST_ENTRY ForwarderLinks;
LIST_ENTRY ServiceTagLinks;
LIST_ENTRY StaticLinks;
#endif
} LDR_DATA_TABLE_ENTRY, *PLDR_DATA_TABLE_ENTRY;
//