Move some access rights so they are usable form kernel-mode.
authorEric Kohl <eric.kohl@reactos.org>
Tue, 13 Jul 2004 16:57:35 +0000 (16:57 +0000)
committerEric Kohl <eric.kohl@reactos.org>
Tue, 13 Jul 2004 16:57:35 +0000 (16:57 +0000)
svn path=/trunk/; revision=10107

reactos/include/defines.h
reactos/include/ntos/ntdef.h

index ffd0b5f..e9602eb 100644 (file)
@@ -534,8 +534,6 @@ extern "C" {
 #define PIPE_ACCESS_DUPLEX     (3)
 #define PIPE_ACCESS_INBOUND    (1)
 #define PIPE_ACCESS_OUTBOUND   (2)
-#define WRITE_DAC      (0x40000L)
-#define WRITE_OWNER    (0x80000L)
 #define ACCESS_SYSTEM_SECURITY (0x1000000L)
 #define PIPE_TYPE_BYTE (0)
 #define PIPE_TYPE_MESSAGE      (4)
index 0230201..cfa22d9 100644 (file)
@@ -19,6 +19,8 @@
 
 #define DELETE         (0x00010000L)
 #define READ_CONTROL   (0x00020000L)
+#define WRITE_DAC      (0x00040000L)
+#define WRITE_OWNER    (0x00080000L)
 #define SYNCHRONIZE    (0x00100000L)
 
 #define DUPLICATE_CLOSE_SOURCE (1)