comctl32: Fix several failing tests in win95.

This commit is contained in:
James Hawkins 2008-09-24 03:02:51 -05:00 committed by Alexandre Julliard
parent d9e26cb9d4
commit 0f38a6c881
1 changed files with 12 additions and 4 deletions

View File

@ -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->bkcolor == CLR_NONE, "wrong bkcolor %x\n", ilh->bkcolor);
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[1] == -1, "wrong ovls[1] %04x\n", ilh->ovls[1]);
ok(ilh->ovls[2] == -1, "wrong ovls[2] %04x\n", ilh->ovls[2]);
ok(ilh->ovls[3] == -1, "wrong ovls[3] %04x\n", ilh->ovls[3]);
ok(ilh->ovls[0] == -1 ||
ilh->ovls[0] == 0, /* win95 */
"wrong ovls[0] %04x\n", ilh->ovls[0]);
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)