wine/include/ddk wdm.h

Alexandre Julliard julliard at wine.codeweavers.com
Mon Nov 28 14:03:44 CST 2005


ChangeSet ID:	21498
CVSROOT:	/opt/cvs-commit
Module name:	wine
Changes by:	julliard at winehq.org	2005/11/28 14:03:43

Modified files:
	include/ddk    : wdm.h 

Log message:
	Vitaliy Margolen <wine-patch at kievinfo.com>
	Add directory and symlink access rights.

Patch: http://cvs.winehq.org/patch.py?id=21498

Old revision  New revision  Changes     Path
 1.1           1.2           +11 -0      wine/include/ddk/wdm.h

Index: wine/include/ddk/wdm.h
diff -u -p wine/include/ddk/wdm.h:1.1 wine/include/ddk/wdm.h:1.2
--- wine/include/ddk/wdm.h:1.1	28 Nov 2005 20: 3:43 -0000
+++ wine/include/ddk/wdm.h	28 Nov 2005 20: 3:43 -0000
@@ -831,4 +831,15 @@ typedef struct _KUSER_SHARED_DATA {
 #define KernelMode 0
 #define UserMode   1
 
+/* directory object access rights */
+#define DIRECTORY_QUERY                 0x0001
+#define DIRECTORY_TRAVERSE              0x0002
+#define DIRECTORY_CREATE_OBJECT         0x0004
+#define DIRECTORY_CREATE_SUBDIRECTORY   0x0008
+#define DIRECTORY_ALL_ACCESS            (STANDARD_RIGHTS_REQUIRED | 0xF)
+
+/* symbolic link access rights */
+#define SYMBOLIC_LINK_QUERY             0x0001
+#define SYMBOLIC_LINK_ALL_ACCESS        (STANDARD_RIGHTS_REQUIRED | 0x1)
+
 #endif



More information about the wine-cvs mailing list