[ros-diffs] [ion] 16648: - Fix LDR_DATA_TABLE_ENTRY definition.

ion at svn.reactos.com ion at svn.reactos.com
Tue Jul 19 22:55:16 CEST 2005


- 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)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.reactos.org/pipermail/ros-diffs/attachments/20050719/d528bd54/attachment.html


More information about the Ros-diffs mailing list