Module: wine Branch: master Commit: f9e12a1001e57028b1c9b4ffd547f29ea6868590 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=f9e12a1001e57028b1c9b4ff...
Author: Robert Shearman rob@codeweavers.com Date: Wed Sep 27 15:50:04 2006 +0100
include: Add recently added PSDK VM flags to winnt.h.
---
include/winnt.h | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/include/winnt.h b/include/winnt.h index 7ae686a..119e0be 100644 --- a/include/winnt.h +++ b/include/winnt.h @@ -535,6 +535,7 @@ #define PAGE_EXECUTE_READWRITE 0x40 #define PAGE_EXECUTE_WRITECOPY 0x80 #define PAGE_GUARD 0x100 #define PAGE_NOCACHE 0x200 +#define PAGE_WRITECOMBINE 0x400
#define MEM_COMMIT 0x00001000 #define MEM_RESERVE 0x00002000 @@ -545,7 +546,10 @@ #define MEM_PRIVATE 0x000200 #define MEM_MAPPED 0x00040000 #define MEM_RESET 0x00080000 #define MEM_TOP_DOWN 0x00100000 +#define MEM_WRITE_WATCH 0x00200000 #define MEM_PHYSICAL 0x00400000 +#define MEM_LARGE_PAGES 0x20000000 +#define MEM_4MB_PAGES 0x80000000 #ifdef __WINESRC__ #define MEM_SYSTEM 0x80000000 #endif @@ -555,8 +559,11 @@ #define SEC_IMAGE 0x010000 #define SEC_RESERVE 0x04000000 #define SEC_COMMIT 0x08000000 #define SEC_NOCACHE 0x10000000 +#define SEC_LARGE_PAGES 0x80000000 #define MEM_IMAGE SEC_IMAGE
+#define WRITE_WATCH_FLAG_RESET 0x00000001 +
#define MINCHAR 0x80 #define MAXCHAR 0x7f