Commit a5b5be49 authored by Paul Gofman's avatar Paul Gofman Committed by Alexandre Julliard

include/ddk: Update the IMAGE_INFO structure.

parent eb7f7847
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment