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
259cb3c8
Commit
259cb3c8
authored
Nov 06, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Nov 07, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32/tests: Use BOOL type where appropriate.
parent
adee328a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
mapping.c
dlls/gdi32/tests/mapping.c
+1
-1
path.c
dlls/gdi32/tests/path.c
+2
-1
No files found.
dlls/gdi32/tests/mapping.c
View file @
259cb3c8
...
...
@@ -513,7 +513,7 @@ static void test_isotropic_mapping(void)
static
void
test_setvirtualresolution
(
void
)
{
HDC
hdc
=
CreateICA
(
"DISPLAY"
,
NULL
,
NULL
,
NULL
);
DWORD
r
;
BOOL
r
;
INT
horz_res
=
GetDeviceCaps
(
hdc
,
HORZRES
);
INT
horz_size
=
GetDeviceCaps
(
hdc
,
HORZSIZE
);
INT
log_pixels_x
=
GetDeviceCaps
(
hdc
,
LOGPIXELSX
);
...
...
dlls/gdi32/tests/path.c
View file @
259cb3c8
...
...
@@ -270,7 +270,8 @@ static void test_widenpath(void)
HDC
hdc
=
GetDC
(
0
);
HPEN
greenPen
,
narrowPen
;
POINT
pnt
[
6
];
INT
nSize
,
ret
;
INT
nSize
;
BOOL
ret
;
/* Create a pen to be used in WidenPath */
greenPen
=
CreatePen
(
PS_SOLID
,
10
,
RGB
(
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