Stub implementation of FlashWindowEx.

oldstable
Mike McCormack 2003-08-12 20:33:26 +00:00 committed by Alexandre Julliard
parent f6983b28c8
commit 0e27c979a6
3 changed files with 26 additions and 1 deletions

View File

@ -203,7 +203,7 @@
@ stdcall FindWindowExW(long long wstr wstr)
@ stdcall FindWindowW(wstr wstr)
@ stdcall FlashWindow(long long)
# @ stub FlashWindowEx
@ stdcall FlashWindowEx(ptr)
@ stdcall FrameRect(long ptr long)
@ stdcall FreeDDElParam(long long)
@ stdcall GetActiveWindow()

View File

@ -2943,6 +2943,22 @@ typedef struct tagMINIMIZEDMETRICS {
#define AW_VER_POSITIVE 0x00000004
#define AW_VER_NEGATIVE 0x00000008
/* FlashWindowEx() flags */
#define FLASHW_STOP 0x00000000
#define FLASHW_CAPTION 0x00000001
#define FLASHW_TRAY 0x00000002
#define FLASHW_ALL (FLASHW_CAPTION|FLASHW_TRAY)
#define FLASHW_TIMER 0x00000004
#define FLASHW_TIMERNOFG 0x0000000C
typedef struct {
UINT cbSize;
HWND hwnd;
DWORD dwFlags;
UINT uCount;
DWORD dwTimeout;
} FLASHWINFO, *PFLASHWINFO;
/* WM_SHOWWINDOW wParam codes */
#define SW_PARENTCLOSING 1
#define SW_OTHERMAXIMIZED 2
@ -4077,6 +4093,7 @@ HWND WINAPI FindWindowExA(HWND,HWND,LPCSTR,LPCSTR);
HWND WINAPI FindWindowExW(HWND,HWND,LPCWSTR,LPCWSTR);
#define FindWindowEx WINELIB_NAME_AW(FindWindowEx)
BOOL WINAPI FlashWindow(HWND,BOOL);
BOOL WINAPI FlashWindowEx(PFLASHWINFO);
INT WINAPI FrameRect(HDC,const RECT*,HBRUSH);
HWND WINAPI GetActiveWindow(void);
HWND WINAPI GetAncestor(HWND,UINT);

View File

@ -3137,6 +3137,14 @@ BOOL WINAPI FlashWindow( HWND hWnd, BOOL bInvert )
}
}
/*******************************************************************
* FlashWindowEx (USER32.@)
*/
BOOL WINAPI FlashWindowEx( PFLASHWINFO pfwi )
{
FIXME("%p\n", pfwi);
return TRUE;
}
/*******************************************************************
* GetWindowContextHelpId (USER32.@)