commit | e21aa6a1845e953e42fe1d9aa232d3ca91f19eb4 | [log] [tgz] |
---|---|---|
author | Eric Pouech <eric.pouech@wanadoo.fr> | Mon Sep 26 11:02:45 2005 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Mon Sep 26 11:02:45 2005 +0000 |
tree | 0dc10cf4ba8c5ae689c2dd045d24a43bbc2bbf9e | |
parent | a8c7284f929bf83e51c75902911a582b1e6661e9 [diff] [blame] |
- now passing access rights when creating a named pipe in NTDLL - reimplemented Kernel32.CreatePipe purely on top of NTDLL APIs - anonymous pipe handles should have the SYNCHRONIZE bit set
diff --git a/server/protocol.def b/server/protocol.def index 9e93f53..118ffc0 100644 --- a/server/protocol.def +++ b/server/protocol.def
@@ -1680,6 +1680,7 @@ /* Create a named pipe */ @REQ(create_named_pipe) + unsigned int access; unsigned int options; unsigned int flags; unsigned int maxinstances;