[Bug 23221] AT4RE FastScanner v3.0 UI button animation bug

wine-bugs at winehq.org wine-bugs at winehq.org
Mon Aug 18 11:18:50 CDT 2014


https://bugs.winehq.org/show_bug.cgi?id=23221

--- Comment #7 from hanska2 at luukku.com ---
1450 /***********************************************************************
1451 * AnimateWindow (USER32.@)
1452 * Shows/Hides a window with an animation
1453 * NO ANIMATION YET
1454 */
1455 BOOL WINAPI AnimateWindow(HWND hwnd, DWORD dwTime, DWORD dwFlags)
1456 {
1457 FIXME("partial stub\n");
1458
1459 /* If trying to show/hide and it's already *
1460 * shown/hidden or invalid window, fail with *
1461 * invalid parameter */
1462 if(!IsWindow(hwnd) ||
1463 (IsWindowVisible(hwnd) && !(dwFlags & AW_HIDE)) ||
1464 (!IsWindowVisible(hwnd) && (dwFlags & AW_HIDE)))
1465 {
1466 SetLastError(ERROR_INVALID_PARAMETER);
1467 return FALSE;
1468 }
1469
1470 ShowWindow(hwnd, (dwFlags & AW_HIDE) ? SW_HIDE : ((dwFlags & AW_ACTIVATE)
? SW_SHOW : SW_SHOWNA));
1471
1472 return TRUE;
1473 }

http://source.winehq.org/git/wine.git/blob/622191f7bcdb409f9aafa257e3f5cf6e326e7744:/dlls/user32/winpos.c#l1450

What's wrong here?

-- 
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.



More information about the wine-bugs mailing list