mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 16:10:29 +00:00
- Implement FlashWindow
svn path=/trunk/; revision=38766
This commit is contained in:
parent
e284c5d6a8
commit
a0520cb3ae
1 changed files with 10 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue