Mercurial > pidgin.yaz
view src/win32/mingw_plus/winuser_extra.h @ 6804:3ef17670e69f
[gaim-migrate @ 7344]
Tim Ringenbach (marv_sf) writes:
" This fixes the /me stuff in yahoo chat's. Previously it
only worked if there was nothing before the /me, but
now we borrow the meify function from gtkconv.c in
order to also ignore leading html when considing the
meifation of a message.
There's also a 2 line fix to yahoo.c that fixes an
issue where buddies would sometimes get stuck idle.
That should probably be a seperate patch, oops. At
least its a seperate hunk."
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Wed, 10 Sep 2003 15:10: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_ */