Mike McCormack : ntdll: Add FILE_ACTION and FILE_NOTIFY_CHANGE_ defines for streams.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Feb 3 12:03:01 CST 2006


Module: wine
Branch: refs/heads/master
Commit: 39f711ae6ec107c4a12ac900df574e79c161873b
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=39f711ae6ec107c4a12ac900df574e79c161873b

Author: Mike McCormack <mike at codeweavers.com>
Date:   Fri Feb  3 18:45:51 2006 +0100

ntdll: Add FILE_ACTION and FILE_NOTIFY_CHANGE_ defines for streams.

---

 include/winnt.h |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/include/winnt.h b/include/winnt.h
index 428a682..b795972 100644
--- a/include/winnt.h
+++ b/include/winnt.h
@@ -3568,14 +3568,20 @@ typedef enum tagSID_NAME_USE {
 #define FILE_NOTIFY_CHANGE_LAST_WRITE   0x00000010
 #define FILE_NOTIFY_CHANGE_LAST_ACCESS  0x00000020
 #define FILE_NOTIFY_CHANGE_CREATION     0x00000040
+#define FILE_NOTIFY_CHANGE_EA           0x00000080
 #define FILE_NOTIFY_CHANGE_SECURITY     0x00000100
+#define FILE_NOTIFY_CHANGE_STREAM_NAME  0x00000200
+#define FILE_NOTIFY_CHANGE_STREAM_SIZE  0x00000400
+#define FILE_NOTIFY_CHANGE_STREAM_WRITE 0x00000800
 
 #define FILE_ACTION_ADDED               0x00000001
 #define FILE_ACTION_REMOVED             0x00000002
 #define FILE_ACTION_MODIFIED            0x00000003
 #define FILE_ACTION_RENAMED_OLD_NAME    0x00000004
 #define FILE_ACTION_RENAMED_NEW_NAME    0x00000005
-
+#define FILE_ACTION_ADDED_STREAM        0x00000006
+#define FILE_ACTION_REMOVED_STREAM      0x00000007
+#define FILE_ACTION_MODIFIED_STREAM     0x00000008
 
 #define FILE_CASE_SENSITIVE_SEARCH      0x00000001
 #define FILE_CASE_PRESERVED_NAMES       0x00000002




More information about the wine-cvs mailing list