Paul Gofman : include/ddk: Update the IMAGE_INFO structure.

Alexandre Julliard julliard at winehq.org
Fri May 29 15:22:55 CDT 2020


Module: wine
Branch: master
Commit: a5b5be497913b0e9cb5c53ce37c6c81f1cc02093
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=a5b5be497913b0e9cb5c53ce37c6c81f1cc02093

Author: Paul Gofman <pgofman at codeweavers.com>
Date:   Fri May 29 10:53:09 2020 +0300

include/ddk: Update the IMAGE_INFO structure.

Signed-off-by: Paul Gofman <pgofman at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 include/ddk/ntddk.h | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/include/ddk/ntddk.h b/include/ddk/ntddk.h
index 36f69cdf9a..e3c9124023 100644
--- a/include/ddk/ntddk.h
+++ b/include/ddk/ntddk.h
@@ -107,6 +107,8 @@ typedef enum _CONFIGURATION_TYPE
     MaximumType
 } CONFIGURATION_TYPE, *PCONFIGURATION_TYPE;
 
+#define IMAGE_ADDRESSING_MODE_32BIT 3
+
 typedef struct _IMAGE_INFO
 {
     union
@@ -118,7 +120,11 @@ typedef struct _IMAGE_INFO
             ULONG SystemModeImage      : 1;
             ULONG ImageMappedToAllPids : 1;
             ULONG ExtendedInfoPresent  : 1;
-            ULONG Reserved             : 21;
+            ULONG MachineTypeMismatch : 1;
+            ULONG ImageSignatureLevel : 4;
+            ULONG ImageSignatureType : 3;
+            ULONG ImagePartialMap : 1;
+            ULONG Reserved : 12;
         } DUMMYSTRUCTNAME;
     } DUMMYUNIONNAME;
     PVOID  ImageBase;




More information about the wine-cvs mailing list