[PATCH 6/9] include/ddk: Update the IMAGE_INFO structure.

Paul Gofman pgofman at codeweavers.com
Fri May 29 02:53:09 CDT 2020


Signed-off-by: Paul Gofman <pgofman at codeweavers.com>
---
 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 36f69cdf9a2..e3c91240231 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;
-- 
2.26.2




More information about the wine-devel mailing list