# HG changeset patch # User Herman Bloggs # Date 1037408453 0 # Node ID e0ed2597587b7fb5d01da7c914f3d604f12b10d9 # Parent cafc0968ea6b611bbe7ef9927597a69b09d8fa95 [gaim-migrate @ 4152] Initial import committer: Tailor Script diff -r cafc0968ea6b -r e0ed2597587b src/win32/mingw_plus/Makefile.mingw --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/win32/mingw_plus/Makefile.mingw Sat Nov 16 01:00:53 2002 +0000 @@ -0,0 +1,13 @@ +# +# Makefile.mingw +# +# Description: Build an import lib containing all Win32 API symbols +# which are missing from mingw 1.1 import libs. +# + + +user32plus.lib: user32plus.def + dlltool -D user32.dll -d user32plus.def -l user32plus.lib + +all: user32plus.lib + diff -r cafc0968ea6b -r e0ed2597587b src/win32/mingw_plus/user32plus.def --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/win32/mingw_plus/user32plus.def Sat Nov 16 01:00:53 2002 +0000 @@ -0,0 +1,2 @@ +EXPORTS + FlashWindowEx diff -r cafc0968ea6b -r e0ed2597587b src/win32/mingw_plus/winuser_extra.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/win32/mingw_plus/winuser_extra.h Sat Nov 16 01:00:53 2002 +0000 @@ -0,0 +1,36 @@ +/* + * 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 */ +/*#if(WINVER >= 0x0500)*/ +#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 +/*#endif /* WINVER >= 0x0500 */ + + +/* From MSDN Lib - Mingw dosn't have */ +typedef struct { + UINT cbSize; + HWND hwnd; + DWORD dwFlags; + UINT uCount; + DWORD dwTimeout; +} FLASHWINFO, *PFLASHWINFO; + +/* + * PROTOS + */ +/* From MS user32.lib (mingw 1.1 dosn't have it) */ +extern BOOL FlashWindowEx(PFLASHWINFO pfwi); + +#endif /* _WINUSER_EXTRA_H_ */