mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 19:26:16 +00:00
- Implement FlashWindow
svn path=/trunk/; revision=38766
This commit is contained in:
@@ -1797,13 +1797,20 @@ FrameRect(HDC hDC, CONST RECT *lprc, HBRUSH hbr)
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
BOOL WINAPI
|
||||
FlashWindow(HWND hWnd, BOOL bInvert)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
FLASHWINFO FlashWndInfo;
|
||||
|
||||
FlashWndInfo.cbSize = sizeof(FLASHWINFO);
|
||||
FlashWndInfo.hwnd = hWnd;
|
||||
FlashWndInfo.dwFlags = !bInvert ? 0 : (FLASHW_TRAY | FLASHW_CAPTION);
|
||||
FlashWndInfo.uCount = 1;
|
||||
FlashWndInfo.dwTimeout = 0;
|
||||
|
||||
return NtUserFlashWindowEx(&FlashWndInfo);
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user