- Fix LDR_DATA_TABLE_ENTRY definition. Modified: trunk/reactos/include/ndk/ldrtypes.h _____
Modified: trunk/reactos/include/ndk/ldrtypes.h --- trunk/reactos/include/ndk/ldrtypes.h 2005-07-19 18:46:13 UTC (rev 16647) +++ trunk/reactos/include/ndk/ldrtypes.h 2005-07-19 20:55:13 UTC (rev 16648) @@ -61,11 +61,17 @@
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)