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

This commit is contained in:
Alexandre Julliard 2007-10-30 15:32:40 +01:00
parent 604530e3bd
commit 94c976c97a
2 changed files with 6 additions and 1 deletions

View File

@ -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 */

View File

@ -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 );
}