Mercurial > pidgin.yaz
view src/win32/mingw_plus/winuser_extra.h @ 4752:e4a8c7215fdf
[gaim-migrate @ 5069]
This is my ugly fix for a crash bug thingy. If you want to make
it less ugly, or more correct, feel free.
The bug causes gaim to crash when you do not have a blist.xml file,
and you have accounts in ~/.gaimrc, but those accounts do not have
individual blist files (so delete ~/.gaim/blist.xml and
~/.gaim/*.blist).
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Thu, 13 Mar 2003 21:20:23 +0000 |
parents | 473b1ea6b616 |
children | 92cbf9713795 |
line wrap: on
line source
/* * winuser_extra.h * * Description: The following is missing from mingw 1.1 */ #ifndef _WINUSER_EXTRA_H_ #define _WINUSER_EXTRA_H_ /* From MSDN Lib - Mingw dosn't have */ #define FLASHW_STOP 0 #define FLASHW_CAPTION 0x00000001 #define FLASHW_TRAY 0x00000002 #define FLASHW_ALL (FLASHW_CAPTION | FLASHW_TRAY) #define FLASHW_TIMER 0x00000004 #define FLASHW_TIMERNOFG 0x0000000C /* From MSDN Lib - Mingw dosn't have */ typedef struct { UINT cbSize; HWND hwnd; DWORD dwFlags; UINT uCount; DWORD dwTimeout; } FLASHWINFO, *PFLASHWINFO; #endif /* _WINUSER_EXTRA_H_ */