Mercurial > pidgin
view src/win32/mingw_plus/winuser_extra.h @ 9471:37f7100e58e6
[gaim-migrate @ 10296]
You can no longer try to send a message or do a command in a chat you've
left, nor can you try to do a command in a conversation who's account is
logged off. Hitting enter just has no effect, like it already did
for sending a message in a logged off conversation.
It might be desirable to be able to perform certain commands in a dead
conversation. Someone who desires this should add a flag and register
such commands with this flag, and make the commands be really careful.
committer: Tailor Script <tailor@pidgin.im>
author | Tim Ringenbach <marv@pidgin.im> |
---|---|
date | Wed, 07 Jul 2004 05:18:55 +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_ */