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
0f38a6c8
Commit
0f38a6c8
authored
Sep 24, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Sep 24, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Fix several failing tests in win95.
parent
d9e26cb9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
imagelist.c
dlls/comctl32/tests/imagelist.c
+12
-4
No files found.
dlls/comctl32/tests/imagelist.c
View file @
0f38a6c8
...
@@ -835,10 +835,18 @@ static void check_ilhead_data(const char *ilh_data, INT cx, INT cy, INT cur, INT
...
@@ -835,10 +835,18 @@ static void check_ilhead_data(const char *ilh_data, INT cx, INT cy, INT cur, INT
ok
(
ilh
->
cy
==
cy
,
"wrong cy %d (expected %d)
\n
"
,
ilh
->
cy
,
cy
);
ok
(
ilh
->
cy
==
cy
,
"wrong cy %d (expected %d)
\n
"
,
ilh
->
cy
,
cy
);
ok
(
ilh
->
bkcolor
==
CLR_NONE
,
"wrong bkcolor %x
\n
"
,
ilh
->
bkcolor
);
ok
(
ilh
->
bkcolor
==
CLR_NONE
,
"wrong bkcolor %x
\n
"
,
ilh
->
bkcolor
);
ok
(
ilh
->
flags
==
ILC_COLOR24
,
"wrong flags %04x
\n
"
,
ilh
->
flags
);
ok
(
ilh
->
flags
==
ILC_COLOR24
,
"wrong flags %04x
\n
"
,
ilh
->
flags
);
ok
(
ilh
->
ovls
[
0
]
==
-
1
,
"wrong ovls[0] %04x
\n
"
,
ilh
->
ovls
[
0
]);
ok
(
ilh
->
ovls
[
0
]
==
-
1
||
ok
(
ilh
->
ovls
[
1
]
==
-
1
,
"wrong ovls[1] %04x
\n
"
,
ilh
->
ovls
[
1
]);
ilh
->
ovls
[
0
]
==
0
,
/* win95 */
ok
(
ilh
->
ovls
[
2
]
==
-
1
,
"wrong ovls[2] %04x
\n
"
,
ilh
->
ovls
[
2
]);
"wrong ovls[0] %04x
\n
"
,
ilh
->
ovls
[
0
]);
ok
(
ilh
->
ovls
[
3
]
==
-
1
,
"wrong ovls[3] %04x
\n
"
,
ilh
->
ovls
[
3
]);
ok
(
ilh
->
ovls
[
1
]
==
-
1
||
ilh
->
ovls
[
1
]
==
0
,
/* win95 */
"wrong ovls[1] %04x
\n
"
,
ilh
->
ovls
[
1
]);
ok
(
ilh
->
ovls
[
2
]
==
-
1
||
ilh
->
ovls
[
2
]
==
0
,
/* win95 */
"wrong ovls[2] %04x
\n
"
,
ilh
->
ovls
[
2
]);
ok
(
ilh
->
ovls
[
3
]
==
-
1
||
ilh
->
ovls
[
3
]
==
0
,
/* win95 */
"wrong ovls[3] %04x
\n
"
,
ilh
->
ovls
[
3
]);
}
}
static
HBITMAP
create_bitmap
(
INT
cx
,
INT
cy
,
COLORREF
color
,
const
char
*
comment
)
static
HBITMAP
create_bitmap
(
INT
cx
,
INT
cy
,
COLORREF
color
,
const
char
*
comment
)
...
...
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