Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
94c976c9
Commit
94c976c9
authored
Oct 30, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Add the generated files missing from the last commit.
parent
604530e3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
server_protocol.h
include/wine/server_protocol.h
+3
-1
trace.c
server/trace.c
+3
-0
No files found.
include/wine/server_protocol.h
View file @
94c976c9
...
...
@@ -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 32
1
#define SERVER_PROTOCOL_VERSION 32
3
#endif
/* __WINE_WINE_SERVER_PROTOCOL_H */
server/trace.c
View file @
94c976c9
...
...
@@ -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
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment