- moved named pipe creation to ntdll
- server now handles the named pipe flags as the NTDLL values (not the
  KERNEL32 ones)
- named pipes in server now use the async IO mechanism for
  connect/wait ops

diff --git a/server/trace.c b/server/trace.c
index e025f59..7295c68 100644
--- a/server/trace.c
+++ b/server/trace.c
@@ -1986,8 +1986,8 @@
 
 static void dump_create_named_pipe_request( const struct create_named_pipe_request *req )
 {
-    fprintf( stderr, " openmode=%08x,", req->openmode );
-    fprintf( stderr, " pipemode=%08x,", req->pipemode );
+    fprintf( stderr, " options=%08x,", req->options );
+    fprintf( stderr, " flags=%08x,", req->flags );
     fprintf( stderr, " maxinstances=%08x,", req->maxinstances );
     fprintf( stderr, " outsize=%08x,", req->outsize );
     fprintf( stderr, " insize=%08x,", req->insize );