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
9fc48b28
Commit
9fc48b28
authored
Mar 25, 2015
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Fix the string type in traces for I/O completion names.
parent
0cce9200
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
server_protocol.h
include/wine/server_protocol.h
+2
-2
protocol.def
server/protocol.def
+2
-2
trace.c
server/trace.c
+2
-2
No files found.
include/wine/server_protocol.h
View file @
9fc48b28
...
...
@@ -4845,7 +4845,7 @@ struct create_completion_request
unsigned
int
attributes
;
unsigned
int
concurrent
;
obj_handle_t
rootdir
;
/* VARARG(filename,
string
); */
/* VARARG(filename,
unicode_str
); */
char
__pad_28
[
4
];
};
struct
create_completion_reply
...
...
@@ -4863,7 +4863,7 @@ struct open_completion_request
unsigned
int
access
;
unsigned
int
attributes
;
obj_handle_t
rootdir
;
/* VARARG(filename,
string
); */
/* VARARG(filename,
unicode_str
); */
};
struct
open_completion_reply
{
...
...
server/protocol.def
View file @
9fc48b28
...
...
@@ -3366,7 +3366,7 @@ enum coords_relative
unsigned int attributes; /* object attributes */
unsigned int concurrent; /* max number of concurrent active threads */
obj_handle_t rootdir; /* root directory */
VARARG(filename,
string);
/* port name */
VARARG(filename,
unicode_str);
/* port name */
@REPLY
obj_handle_t handle; /* port handle */
@END
...
...
@@ -3377,7 +3377,7 @@ enum coords_relative
unsigned int access; /* desired access to a port */
unsigned int attributes; /* object attributes */
obj_handle_t rootdir; /* root directory */
VARARG(filename,
string);
/* port name */
VARARG(filename,
unicode_str);
/* port name */
@REPLY
obj_handle_t handle; /* port handle */
@END
...
...
server/trace.c
View file @
9fc48b28
...
...
@@ -3951,7 +3951,7 @@ static void dump_create_completion_request( const struct create_completion_reque
fprintf
(
stderr
,
", attributes=%08x"
,
req
->
attributes
);
fprintf
(
stderr
,
", concurrent=%08x"
,
req
->
concurrent
);
fprintf
(
stderr
,
", rootdir=%04x"
,
req
->
rootdir
);
dump_varargs_
string
(
", filename="
,
cur_size
);
dump_varargs_
unicode_str
(
", filename="
,
cur_size
);
}
static
void
dump_create_completion_reply
(
const
struct
create_completion_reply
*
req
)
...
...
@@ -3964,7 +3964,7 @@ static void dump_open_completion_request( const struct open_completion_request *
fprintf
(
stderr
,
" access=%08x"
,
req
->
access
);
fprintf
(
stderr
,
", attributes=%08x"
,
req
->
attributes
);
fprintf
(
stderr
,
", rootdir=%04x"
,
req
->
rootdir
);
dump_varargs_
string
(
", filename="
,
cur_size
);
dump_varargs_
unicode_str
(
", filename="
,
cur_size
);
}
static
void
dump_open_completion_reply
(
const
struct
open_completion_reply
*
req
)
...
...
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