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-10 17:04:43 +0400
committerjfrijters <jfrijters>2011-10-10 17:04:43 +0400
commitee0db97ca4c9b55f24c01aa49b3264e5f09c418a (patch)
treec08c5f46f936a8b477dc9904ba2a0dc8bbbe66a3 /reflect/Writer
parent929c2f4ed7165361f9ffd9bea5475031719e11c2 (diff)
Added Windows 8 DllCharacteristics flags.
Diffstat (limited to 'reflect/Writer')
-rw-r--r--reflect/Writer/PEWriter.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/reflect/Writer/PEWriter.cs b/reflect/Writer/PEWriter.cs
index 21036f54..66b7f7ce 100644
--- a/reflect/Writer/PEWriter.cs
+++ b/reflect/Writer/PEWriter.cs
@@ -162,9 +162,11 @@ namespace IKVM.Reflection.Writer
public const WORD IMAGE_SUBSYSTEM_WINDOWS_GUI = 2;
public const WORD IMAGE_SUBSYSTEM_WINDOWS_CUI = 3;
+ public const WORD IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA = 0x0020;
public const WORD IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE = 0x0040;
public const WORD IMAGE_DLLCHARACTERISTICS_NX_COMPAT = 0x0100;
public const WORD IMAGE_DLLCHARACTERISTICS_NO_SEH = 0x0400;
+ public const WORD IMAGE_DLLCHARACTERISTICS_APPCONTAINER = 0x1000;
public const WORD IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE = 0x8000;
public WORD Magic = IMAGE_NT_OPTIONAL_HDR32_MAGIC;