Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjfrijters <jfrijters>2011-10-11 08:57:57 +0400
committerjfrijters <jfrijters>2011-10-11 08:57:57 +0400
commitf59b5446af314379d8d69b362b8a2d2530d10a5f (patch)
tree4255c34f289707af2ae0dd25994a922b759d4feb /reflect/Metadata
parentd8b3bc9bc9aa71483755c70d5a38b2bd8d8e98ea (diff)
Added support for PortableExecutableKinds.Preferred32Bit.
Diffstat (limited to 'reflect/Metadata')
-rw-r--r--reflect/Metadata/CliHeader.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/reflect/Metadata/CliHeader.cs b/reflect/Metadata/CliHeader.cs
index 00d50e6f..32812290 100644
--- a/reflect/Metadata/CliHeader.cs
+++ b/reflect/Metadata/CliHeader.cs
@@ -32,6 +32,7 @@ namespace IKVM.Reflection.Metadata
internal const uint COMIMAGE_FLAGS_32BITREQUIRED = 0x00000002;
internal const uint COMIMAGE_FLAGS_STRONGNAMESIGNED = 0x00000008;
internal const uint COMIMAGE_FLAGS_NATIVE_ENTRYPOINT = 0x00000010;
+ internal const uint COMIMAGE_FLAGS_32BITPREFERRED = 0x00020000;
internal uint Cb = 0x48;
internal ushort MajorRuntimeVersion;