Alexandre Julliard : server: Add the generated files missing from the last commit.

Alexandre Julliard julliard at winehq.org
Tue Oct 30 09:33:57 CDT 2007


Module: wine
Branch: master
Commit: 94c976c97a38347fde330b2fdba949b786b9479a
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=94c976c97a38347fde330b2fdba949b786b9479a

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Tue Oct 30 15:32:40 2007 +0100

server: Add the generated files missing from the last commit.

---

 include/wine/server_protocol.h |    4 +++-
 server/trace.c                 |    3 +++
 2 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/include/wine/server_protocol.h b/include/wine/server_protocol.h
index e7ce2cb..e669953 100644
--- a/include/wine/server_protocol.h
+++ b/include/wine/server_protocol.h
@@ -221,6 +221,7 @@ struct object_attributes
 {
     obj_handle_t rootdir;
     data_size_t sd_len;
+    data_size_t name_len;
 
 
 };
@@ -1010,6 +1011,7 @@ struct create_file_request
     int          create;
     unsigned int options;
     unsigned int attrs;
+    /* VARARG(objattr,object_attributes); */
     /* VARARG(filename,string); */
 };
 struct create_file_reply
@@ -4877,6 +4879,6 @@ union generic_reply
     struct set_completion_info_reply set_completion_info_reply;
 };
 
-#define SERVER_PROTOCOL_VERSION 321
+#define SERVER_PROTOCOL_VERSION 323
 
 #endif /* __WINE_WINE_SERVER_PROTOCOL_H */
diff --git a/server/trace.c b/server/trace.c
index 0f0e17d..72f9ddb 100644
--- a/server/trace.c
+++ b/server/trace.c
@@ -1275,6 +1275,9 @@ static void dump_create_file_request( const struct create_file_request *req )
     fprintf( stderr, " create=%d,", req->create );
     fprintf( stderr, " options=%08x,", req->options );
     fprintf( stderr, " attrs=%08x,", req->attrs );
+    fprintf( stderr, " objattr=" );
+    dump_varargs_object_attributes( cur_size );
+    fputc( ',', stderr );
     fprintf( stderr, " filename=" );
     dump_varargs_string( cur_size );
 }




More information about the wine-cvs mailing list