Commit 9d538e43 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

user32: Make FlashWindowEx tests pass under Windows.

parent 39a4b5fa
...@@ -6710,7 +6710,7 @@ static void test_FlashWindowEx(void) ...@@ -6710,7 +6710,7 @@ static void test_FlashWindowEx(void)
SetLastError(0xdeadbeef); SetLastError(0xdeadbeef);
ret = pFlashWindowEx(&finfo); ret = pFlashWindowEx(&finfo);
todo_wine ok(!ret, "FlashWindowEx succeeded\n"); todo_wine ok(!ret, "previous window state should not be active\n");
finfo.cbSize = sizeof(FLASHWINFO) - 1; finfo.cbSize = sizeof(FLASHWINFO) - 1;
SetLastError(0xdeadbeef); SetLastError(0xdeadbeef);
...@@ -6750,7 +6750,7 @@ static void test_FlashWindowEx(void) ...@@ -6750,7 +6750,7 @@ static void test_FlashWindowEx(void)
SetLastError(0xdeadbeef); SetLastError(0xdeadbeef);
ret = pFlashWindowEx(&finfo); ret = pFlashWindowEx(&finfo);
todo_wine ok(!ret, "FlashWindowEx succeeded\n"); ok(ret, "previous window state should be active\n");
ok(finfo.cbSize == sizeof(FLASHWINFO), "FlashWindowEx modified cdSize to %x\n", finfo.cbSize); ok(finfo.cbSize == sizeof(FLASHWINFO), "FlashWindowEx modified cdSize to %x\n", finfo.cbSize);
ok(finfo.hwnd == hwnd, "FlashWindowEx modified hwnd to %p\n", finfo.hwnd); ok(finfo.hwnd == hwnd, "FlashWindowEx modified hwnd to %p\n", finfo.hwnd);
...@@ -6761,7 +6761,8 @@ static void test_FlashWindowEx(void) ...@@ -6761,7 +6761,8 @@ static void test_FlashWindowEx(void)
finfo.dwFlags = FLASHW_STOP; finfo.dwFlags = FLASHW_STOP;
SetLastError(0xdeadbeef); SetLastError(0xdeadbeef);
ret = pFlashWindowEx(&finfo); ret = pFlashWindowEx(&finfo);
ok(ret, "FlashWindowEx failed with %d\n", GetLastError()); todo_wine
ok(!ret, "previous window state should not be active\n");
DestroyWindow( hwnd ); DestroyWindow( hwnd );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment