Mercurial > pidgin
view src/win32/mingw_plus/winuser_extra.h @ 4585:2427d847e39c
[gaim-migrate @ 4869]
Matthew Smith (smigs) writes:
" - spelling+spec.diff corrects "formated" to "formatted"
in oscar.c & all the translations, and removes
"--disable-artsc" from gaim.spec.in as that configure
option no longer exists.
- plugins.diff marks up the plugin descriptions and
names with _() if it wasn't already present, and
removes the differences between the two
descriptions/names (i.e. *char name and desc.name) that
were present for some plugins. I only did this for
plugins that get compiled by default, though.. not much
point in doing the others =P "
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Mon, 17 Feb 2003 15:22:21 +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_ */