Kevin Koltzau : winedump: Print new DLL characteristics.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Nov 17 04:54:14 CST 2006


Module: wine
Branch: master
Commit: 64506c0a5162915582e6c5662ab75a3d3847a8f7
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=64506c0a5162915582e6c5662ab75a3d3847a8f7

Author: Kevin Koltzau <kevin at plop.org>
Date:   Thu Nov 16 22:43:25 2006 -0500

winedump: Print new DLL characteristics.

---

 tools/winedump/pe.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/tools/winedump/pe.c b/tools/winedump/pe.c
index dd7588c..d452525 100644
--- a/tools/winedump/pe.c
+++ b/tools/winedump/pe.c
@@ -196,6 +196,9 @@ static inline void print_dllflags(const
 {
     printf("  %-34s 0x%X\n", title, value);
 #define X(f,s) if (value & f) printf("    %s\n", s)
+    X(IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE,          "DYNAMIC_BASE");
+    X(IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY,       "FORCE_INTEGRITY");
+    X(IMAGE_DLLCHARACTERISTICS_NX_COMPAT,             "NX_COMPAT");
     X(IMAGE_DLLCHARACTERISTICS_NO_ISOLATION,          "NO_ISOLATION");
     X(IMAGE_DLLCHARACTERISTICS_NO_SEH,                "NO_SEH");
     X(IMAGE_DLLCHARACTERISTICS_NO_BIND,               "NO_BIND");




More information about the wine-cvs mailing list