Mercurial > pidgin
view src/win32/mingw_plus/winuser_extra.h @ 8631:7b8f2818f38a
[gaim-migrate @ 9383]
More rendezvous stuff. You still shouldn't be using this.
I refactored a few of the mDNS sending functions and unhardcoded
some of the username and hostname values.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sun, 11 Apr 2004 17:04:33 +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_ */