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
4afc5454
Commit
4afc5454
authored
Nov 15, 2009
by
Nikolay Sivov
Committed by
Alexandre Julliard
Nov 16, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/imagelist: Use defined flags instead of magic numbers in tests.
parent
3e20458a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
imagelist.c
dlls/comctl32/tests/imagelist.c
+3
-3
No files found.
dlls/comctl32/tests/imagelist.c
View file @
4afc5454
...
...
@@ -336,7 +336,7 @@ static BOOL DoTest1(void)
HICON
hicon3
;
/* create an imagelist to play with */
himl
=
ImageList_Create
(
84
,
84
,
0x10
,
0
,
3
);
himl
=
ImageList_Create
(
84
,
84
,
ILC_COLOR16
,
0
,
3
);
ok
(
himl
!=
0
,
"failed to create imagelist
\n
"
);
/* load the icons to add to the image list */
...
...
@@ -402,7 +402,7 @@ static BOOL DoTest2(void)
HICON
hicon3
;
/* create an imagelist to play with */
himl
=
ImageList_Create
(
84
,
84
,
0x10
,
0
,
3
);
himl
=
ImageList_Create
(
84
,
84
,
ILC_COLOR16
,
0
,
3
);
ok
(
himl
!=
0
,
"failed to create imagelist
\n
"
);
/* load the icons to add to the image list */
...
...
@@ -451,7 +451,7 @@ static BOOL DoTest3(void)
ok
(
hdc
!=
NULL
,
"couldn't get DC
\n
"
);
/* create an imagelist to play with */
himl
=
ImageList_Create
(
48
,
48
,
0x10
,
0
,
3
);
himl
=
ImageList_Create
(
48
,
48
,
ILC_COLOR16
,
0
,
3
);
ok
(
himl
!=
0
,
"failed to create imagelist
\n
"
);
/* load the icons to add to the image list */
...
...
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