Commit 0b12525e authored by Vitaliy Margolen's avatar Vitaliy Margolen Committed by Alexandre Julliard

Add directory and symlink access rights.

parent 0e7c41e9
...@@ -831,4 +831,15 @@ typedef struct _KUSER_SHARED_DATA { ...@@ -831,4 +831,15 @@ typedef struct _KUSER_SHARED_DATA {
#define KernelMode 0 #define KernelMode 0
#define UserMode 1 #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 #endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment