Mercurial > pidgin
view src/win32/mingw_plus/winuser_extra.h @ 10294:6484242e4e30
[gaim-migrate @ 11473]
"This patch just fixes up some stuff in the choice request stuff..
Basically, if there's more than 5 items which makes it display as an
option/dropdown menu, the menu wasn't being shown and the default was
never getting set. The reason it's so bulky it's to avoid the option
menu growing when the menu is displayed." --Gary Kramlich
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Thu, 02 Dec 2004 12:58:25 +0000 |
parents | 92cbf9713795 |
children |
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 doesn'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 doesn't have */ typedef struct { UINT cbSize; HWND hwnd; DWORD dwFlags; UINT uCount; DWORD dwTimeout; } FLASHWINFO, *PFLASHWINFO; #endif /* _WINUSER_EXTRA_H_ */