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
98e4c98e
Commit
98e4c98e
authored
Oct 09, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Oct 10, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Use BOOL type where appropriate.
parent
3d30fb88
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
mapping.c
dlls/gdi32/mapping.c
+8
-8
No files found.
dlls/gdi32/mapping.c
View file @
98e4c98e
...
...
@@ -377,7 +377,7 @@ INT WINAPI SetMapMode( HDC hdc, INT mode )
*/
BOOL
WINAPI
SetViewportExtEx
(
HDC
hdc
,
INT
x
,
INT
y
,
LPSIZE
size
)
{
INT
ret
=
FALSE
;
BOOL
ret
=
FALSE
;
DC
*
dc
=
get_dc_ptr
(
hdc
);
if
(
dc
)
...
...
@@ -395,7 +395,7 @@ BOOL WINAPI SetViewportExtEx( HDC hdc, INT x, INT y, LPSIZE size )
*/
BOOL
WINAPI
SetViewportOrgEx
(
HDC
hdc
,
INT
x
,
INT
y
,
LPPOINT
pt
)
{
INT
ret
=
FALSE
;
BOOL
ret
=
FALSE
;
DC
*
dc
=
get_dc_ptr
(
hdc
);
if
(
dc
)
...
...
@@ -413,7 +413,7 @@ BOOL WINAPI SetViewportOrgEx( HDC hdc, INT x, INT y, LPPOINT pt )
*/
BOOL
WINAPI
SetWindowExtEx
(
HDC
hdc
,
INT
x
,
INT
y
,
LPSIZE
size
)
{
INT
ret
=
FALSE
;
BOOL
ret
=
FALSE
;
DC
*
dc
=
get_dc_ptr
(
hdc
);
if
(
dc
)
...
...
@@ -431,7 +431,7 @@ BOOL WINAPI SetWindowExtEx( HDC hdc, INT x, INT y, LPSIZE size )
*/
BOOL
WINAPI
SetWindowOrgEx
(
HDC
hdc
,
INT
x
,
INT
y
,
LPPOINT
pt
)
{
INT
ret
=
FALSE
;
BOOL
ret
=
FALSE
;
DC
*
dc
=
get_dc_ptr
(
hdc
);
if
(
dc
)
...
...
@@ -449,7 +449,7 @@ BOOL WINAPI SetWindowOrgEx( HDC hdc, INT x, INT y, LPPOINT pt )
*/
BOOL
WINAPI
OffsetViewportOrgEx
(
HDC
hdc
,
INT
x
,
INT
y
,
LPPOINT
pt
)
{
INT
ret
=
FALSE
;
BOOL
ret
=
FALSE
;
DC
*
dc
=
get_dc_ptr
(
hdc
);
if
(
dc
)
...
...
@@ -467,7 +467,7 @@ BOOL WINAPI OffsetViewportOrgEx( HDC hdc, INT x, INT y, LPPOINT pt)
*/
BOOL
WINAPI
OffsetWindowOrgEx
(
HDC
hdc
,
INT
x
,
INT
y
,
LPPOINT
pt
)
{
INT
ret
=
FALSE
;
BOOL
ret
=
FALSE
;
DC
*
dc
=
get_dc_ptr
(
hdc
);
if
(
dc
)
...
...
@@ -486,7 +486,7 @@ BOOL WINAPI OffsetWindowOrgEx( HDC hdc, INT x, INT y, LPPOINT pt )
BOOL
WINAPI
ScaleViewportExtEx
(
HDC
hdc
,
INT
xNum
,
INT
xDenom
,
INT
yNum
,
INT
yDenom
,
LPSIZE
size
)
{
INT
ret
=
FALSE
;
BOOL
ret
=
FALSE
;
DC
*
dc
=
get_dc_ptr
(
hdc
);
if
(
dc
)
...
...
@@ -505,7 +505,7 @@ BOOL WINAPI ScaleViewportExtEx( HDC hdc, INT xNum, INT xDenom,
BOOL
WINAPI
ScaleWindowExtEx
(
HDC
hdc
,
INT
xNum
,
INT
xDenom
,
INT
yNum
,
INT
yDenom
,
LPSIZE
size
)
{
INT
ret
=
FALSE
;
BOOL
ret
=
FALSE
;
DC
*
dc
=
get_dc_ptr
(
hdc
);
if
(
dc
)
...
...
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