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
f5784e2f
Commit
f5784e2f
authored
Jun 16, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
services: Use nameless unions/structs.
parent
c2d1c8dc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
rpc.c
programs/services/rpc.c
+2
-4
No files found.
programs/services/rpc.c
View file @
f5784e2f
...
...
@@ -19,8 +19,6 @@
*/
#define WIN32_LEAN_AND_MEAN
#define NONAMELESSSTRUCT
#define NONAMELESSUNION
#include <stdarg.h>
#include <windows.h>
...
...
@@ -1143,8 +1141,8 @@ static BOOL process_send_command(struct process_entry *process, const void *data
DWORD
count
,
ret
;
BOOL
r
;
overlapped
.
u
.
s
.
Offset
=
0
;
overlapped
.
u
.
s
.
OffsetHigh
=
0
;
overlapped
.
Offset
=
0
;
overlapped
.
OffsetHigh
=
0
;
overlapped
.
hEvent
=
process
->
overlapped_event
;
r
=
WriteFile
(
process
->
control_pipe
,
data
,
size
,
&
count
,
&
overlapped
);
if
(
!
r
&&
GetLastError
()
==
ERROR_IO_PENDING
)
...
...
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