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
007f1335
Commit
007f1335
authored
Apr 15, 1999
by
Zygo Blaxell
Committed by
Alexandre Julliard
Apr 15, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ReleaseCapture() is supposed to return a BOOL value.
parent
f31ec0b0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
winuser.h
include/winuser.h
+1
-1
input.c
windows/input.c
+2
-2
No files found.
include/winuser.h
View file @
007f1335
...
...
@@ -2825,7 +2825,7 @@ LONG WINAPI GetMessageTime(void);
DWORD
WINAPI
GetTickCount
(
void
);
ATOM
WINAPI
GlobalDeleteAtom
(
ATOM
);
DWORD
WINAPI
OemKeyScan
(
WORD
);
VOID
WINAPI
ReleaseCapture
(
void
);
BOOL
WINAPI
ReleaseCapture
(
void
);
VOID
WINAPI
SetKeyboardState
(
LPBYTE
);
VOID
WINAPI
WaitMessage
(
VOID
);
...
...
windows/input.c
View file @
007f1335
...
...
@@ -371,9 +371,9 @@ HWND WINAPI SetCapture( HWND hwnd )
/**********************************************************************
* ReleaseCapture (USER.19) (USER32.439)
*/
void
WINAPI
ReleaseCapture
(
void
)
BOOL
WINAPI
ReleaseCapture
(
void
)
{
EVENT_Capture
(
0
,
0
);
return
(
EVENT_Capture
(
0
,
0
)
!=
0
);
}
...
...
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