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
762aef66
Commit
762aef66
authored
Nov 20, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Nov 20, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Use BOOL type where appropriate.
parent
e81412a4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
cursoricon.c
dlls/user32/cursoricon.c
+2
-1
message.c
dlls/user32/message.c
+2
-2
No files found.
dlls/user32/cursoricon.c
View file @
762aef66
...
...
@@ -1100,7 +1100,8 @@ static HCURSOR CURSORICON_CreateIconFromANI( const BYTE *bits, DWORD bits_size,
ani_header
header
=
{
0
};
BOOL
use_seq
=
FALSE
;
HCURSOR
cursor
=
0
;
UINT
i
,
error
=
0
;
UINT
i
;
BOOL
error
=
FALSE
;
HICON
*
frames
;
riff_chunk_t
root_chunk
=
{
bits_size
,
bits
};
...
...
dlls/user32/message.c
View file @
762aef66
...
...
@@ -4205,7 +4205,7 @@ typedef struct BroadcastParm
UINT
msg
;
WPARAM
wp
;
LPARAM
lp
;
DWORD
success
;
BOOL
success
;
HWINSTA
winsta
;
}
BroadcastParm
;
...
...
@@ -4246,7 +4246,7 @@ static BOOL CALLBACK bcast_childwindow( HWND hw, LPARAM lp )
return
TRUE
;
fail:
parm
->
success
=
0
;
parm
->
success
=
FALSE
;
return
FALSE
;
}
else
if
(
parm
->
flags
&
BSF_POSTMESSAGE
)
...
...
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