Module: wine Branch: master Commit: 8cebef67971b0574d4b613c0ad2b082958a28b70 URL: http://source.winehq.org/git/wine.git/?a=commit;h=8cebef67971b0574d4b613c0ad... Author: Kevin Koltzau <kevin(a)plop.org> Date: Thu Nov 16 22:23:14 2006 -0500 winnt.h: Add defines for new DLL characteristics. --- include/winnt.h | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/include/winnt.h b/include/winnt.h index fb760af..edf0873 100644 --- a/include/winnt.h +++ b/include/winnt.h @@ -2198,6 +2198,9 @@ typedef struct _IMAGE_VXD_HEADER { #define IMAGE_SUBSYSTEM_XBOX 14 /* DLL Characteristics */ +#define IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE 0x0040 +#define IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY 0x0080 +#define IMAGE_DLLCHARACTERISTICS_NX_COMPAT 0x0100 #define IMAGE_DLLCHARACTERISTICS_NO_ISOLATION 0x0200 #define IMAGE_DLLCHARACTERISTICS_NO_SEH 0x0400 #define IMAGE_DLLCHARACTERISTICS_NO_BIND 0x0800