comparison src/win32/mingw_plus/winuser_extra.h @ 3968:e0ed2597587b

[gaim-migrate @ 4152] Initial import committer: Tailor Script <tailor@pidgin.im>
author Herman Bloggs <hermanator12002@yahoo.com>
date Sat, 16 Nov 2002 01:00:53 +0000
parents
children e0f868943dee
comparison
equal deleted inserted replaced
3967:cafc0968ea6b 3968:e0ed2597587b
1 /*
2 * winuser_extra.h
3 *
4 * Description: The following is missing from mingw 1.1
5 */
6
7 #ifndef _WINUSER_EXTRA_H_
8 #define _WINUSER_EXTRA_H_
9
10 /* From MSDN Lib - Mingw dosn't have */
11 /*#if(WINVER >= 0x0500)*/
12 #define FLASHW_STOP 0
13 #define FLASHW_CAPTION 0x00000001
14 #define FLASHW_TRAY 0x00000002
15 #define FLASHW_ALL (FLASHW_CAPTION | FLASHW_TRAY)
16 #define FLASHW_TIMER 0x00000004
17 #define FLASHW_TIMERNOFG 0x0000000C
18 /*#endif /* WINVER >= 0x0500 */
19
20
21 /* From MSDN Lib - Mingw dosn't have */
22 typedef struct {
23 UINT cbSize;
24 HWND hwnd;
25 DWORD dwFlags;
26 UINT uCount;
27 DWORD dwTimeout;
28 } FLASHWINFO, *PFLASHWINFO;
29
30 /*
31 * PROTOS
32 */
33 /* From MS user32.lib (mingw 1.1 dosn't have it) */
34 extern BOOL FlashWindowEx(PFLASHWINFO pfwi);
35
36 #endif /* _WINUSER_EXTRA_H_ */