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
6a86e2e9
Commit
6a86e2e9
authored
Jul 25, 2014
by
Andreas Mohr
Committed by
Alexandre Julliard
Aug 04, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Fix naming/spelling/typo of macro to HasOverlappedIoCompleted().
parent
bb259867
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
winbase.h
include/winbase.h
+1
-1
services.c
programs/services/services.c
+1
-1
No files found.
include/winbase.h
View file @
6a86e2e9
...
...
@@ -2071,7 +2071,7 @@ WINBASEAPI VOID WINAPI GlobalUnfix(HGLOBAL);
WINBASEAPI
BOOL
WINAPI
GlobalUnlock
(
HGLOBAL
);
WINBASEAPI
BOOL
WINAPI
GlobalUnWire
(
HGLOBAL
);
WINBASEAPI
LPVOID
WINAPI
GlobalWire
(
HGLOBAL
);
#define HasOverlappedCompleted(lpOverlapped) ((lpOverlapped)->Internal != STATUS_PENDING)
#define HasOverlapped
Io
Completed(lpOverlapped) ((lpOverlapped)->Internal != STATUS_PENDING)
WINBASEAPI
LPVOID
WINAPI
HeapAlloc
(
HANDLE
,
DWORD
,
SIZE_T
)
__WINE_ALLOC_SIZE
(
3
);
WINBASEAPI
SIZE_T
WINAPI
HeapCompact
(
HANDLE
,
DWORD
);
WINBASEAPI
HANDLE
WINAPI
HeapCreate
(
DWORD
,
SIZE_T
,
SIZE_T
);
...
...
programs/services/services.c
View file @
6a86e2e9
...
...
@@ -751,7 +751,7 @@ static BOOL service_send_start_message(struct service_entry *service, HANDLE pro
handles
[
1
]
=
process_handle
;
if
(
WaitForMultipleObjects
(
2
,
handles
,
FALSE
,
service_pipe_timeout
)
!=
WAIT_OBJECT_0
)
CancelIo
(
service
->
control_pipe
);
if
(
!
HasOverlappedCompleted
(
&
overlapped
))
if
(
!
HasOverlapped
Io
Completed
(
&
overlapped
))
{
WINE_ERR
(
"service %s failed to start
\n
"
,
wine_dbgstr_w
(
service
->
name
));
return
FALSE
;
...
...
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