Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
bdc9b147
Commit
bdc9b147
authored
Jan 29, 2014
by
André Hentschel
Committed by
Alexandre Julliard
Feb 04, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Use boolean return values in boolean functions.
parent
c8426495
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
input.c
dlls/user32/input.c
+1
-1
nonclient.c
dlls/user32/nonclient.c
+1
-1
painting.c
dlls/user32/painting.c
+1
-1
No files found.
dlls/user32/input.c
View file @
bdc9b147
...
...
@@ -266,7 +266,7 @@ BOOL WINAPI GetCursorInfo( PCURSORINFO pci )
{
BOOL
ret
;
if
(
!
pci
)
return
0
;
if
(
!
pci
)
return
FALSE
;
SERVER_START_REQ
(
get_thread_input
)
{
...
...
dlls/user32/nonclient.c
View file @
bdc9b147
...
...
@@ -360,7 +360,7 @@ BOOL WINAPI DrawCaptionTempW (HWND hwnd, HDC hdc, const RECT *rect, HFONT hFont,
if
(
uFlags
&
0x2000
)
FIXME
(
"undocumented flag (0x2000)!
\n
"
);
return
0
;
return
FALSE
;
}
...
...
dlls/user32/painting.c
View file @
bdc9b147
...
...
@@ -486,7 +486,7 @@ static BOOL CALLBACK dc_hook( HDC hDC, WORD code, DWORD_PTR data, LPARAM lParam
TRACE
(
"hDC = %p, %u
\n
"
,
hDC
,
code
);
if
(
!
dce
)
return
0
;
if
(
!
dce
)
return
FALSE
;
assert
(
dce
->
hdc
==
hDC
);
switch
(
code
)
...
...
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