user32/tests: Fix a window style check on Vista.

This commit is contained in:
Alexandre Julliard 2008-06-10 13:03:37 +02:00
parent 5b0c326679
commit d93fa6a1e7
1 changed files with 3 additions and 3 deletions

View File

@ -730,10 +730,10 @@ static void verify_window_info(HWND hwnd, const WINDOWINFO *info)
ok(info->dwStyle == (DWORD)GetWindowLongA(hwnd, GWL_STYLE),
"wrong dwStyle: %08x != %08x\n", info->dwStyle, GetWindowLongA(hwnd, GWL_STYLE));
/* Windows reports a not documented exstyle 0x800 in WINDOWINFO, but
* doesn't return it in GetWindowLong(hwnd, GWL_EXSTYLE).
/* Windows reports some undocumented exstyles in WINDOWINFO, but
* doesn't return them in GetWindowLong(hwnd, GWL_EXSTYLE).
*/
ok((info->dwExStyle & ~0x800) == (DWORD)GetWindowLongA(hwnd, GWL_EXSTYLE),
ok((info->dwExStyle & ~0xe0000800) == (DWORD)GetWindowLongA(hwnd, GWL_EXSTYLE),
"wrong dwExStyle: %08x != %08x\n", info->dwExStyle, GetWindowLongA(hwnd, GWL_EXSTYLE));
status = (GetActiveWindow() == hwnd) ? WS_ACTIVECAPTION : 0;
ok(info->dwWindowStatus == status, "wrong dwWindowStatus: %04x != %04x\n",