server: Add the generated files missing from the last commit.
This commit is contained in:
parent
604530e3bd
commit
94c976c97a
|
@ -221,6 +221,7 @@ struct object_attributes
|
||||||
{
|
{
|
||||||
obj_handle_t rootdir;
|
obj_handle_t rootdir;
|
||||||
data_size_t sd_len;
|
data_size_t sd_len;
|
||||||
|
data_size_t name_len;
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
@ -1010,6 +1011,7 @@ struct create_file_request
|
||||||
int create;
|
int create;
|
||||||
unsigned int options;
|
unsigned int options;
|
||||||
unsigned int attrs;
|
unsigned int attrs;
|
||||||
|
/* VARARG(objattr,object_attributes); */
|
||||||
/* VARARG(filename,string); */
|
/* VARARG(filename,string); */
|
||||||
};
|
};
|
||||||
struct create_file_reply
|
struct create_file_reply
|
||||||
|
@ -4877,6 +4879,6 @@ union generic_reply
|
||||||
struct set_completion_info_reply set_completion_info_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 */
|
#endif /* __WINE_WINE_SERVER_PROTOCOL_H */
|
||||||
|
|
|
@ -1275,6 +1275,9 @@ static void dump_create_file_request( const struct create_file_request *req )
|
||||||
fprintf( stderr, " create=%d,", req->create );
|
fprintf( stderr, " create=%d,", req->create );
|
||||||
fprintf( stderr, " options=%08x,", req->options );
|
fprintf( stderr, " options=%08x,", req->options );
|
||||||
fprintf( stderr, " attrs=%08x,", req->attrs );
|
fprintf( stderr, " attrs=%08x,", req->attrs );
|
||||||
|
fprintf( stderr, " objattr=" );
|
||||||
|
dump_varargs_object_attributes( cur_size );
|
||||||
|
fputc( ',', stderr );
|
||||||
fprintf( stderr, " filename=" );
|
fprintf( stderr, " filename=" );
|
||||||
dump_varargs_string( cur_size );
|
dump_varargs_string( cur_size );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue