Mon, 20 Oct 2003 04:08:13 +0000
[gaim-migrate @ 7888]
This is fun. I got silly and decided to add some drop shadows to the buddy
list tooltip. It looks totally awesome. It will be reverted before the next
release though. It's just far too hacky.
| 3968 | 1 | /* |
| 2 | * winuser_extra.h | |
| 3 | * | |
| 4 | * Description: The following is missing from mingw 1.1 | |
| 5 | */ | |
| 6 | ||
| 7 | #ifndef _WINUSER_EXTRA_H_ | |
| 8 | #define _WINUSER_EXTRA_H_ | |
| 9 | ||
| 10 | /* From MSDN Lib - Mingw dosn't have */ | |
| 11 | #define FLASHW_STOP 0 | |
| 12 | #define FLASHW_CAPTION 0x00000001 | |
| 13 | #define FLASHW_TRAY 0x00000002 | |
| 14 | #define FLASHW_ALL (FLASHW_CAPTION | FLASHW_TRAY) | |
| 15 | #define FLASHW_TIMER 0x00000004 | |
| 16 | #define FLASHW_TIMERNOFG 0x0000000C | |
| 17 | ||
| 18 | ||
| 19 | /* From MSDN Lib - Mingw dosn't have */ | |
| 20 | typedef struct { | |
| 21 | UINT cbSize; | |
| 22 | HWND hwnd; | |
| 23 | DWORD dwFlags; | |
| 24 | UINT uCount; | |
| 25 | DWORD dwTimeout; | |
| 26 | } FLASHWINFO, *PFLASHWINFO; | |
| 27 | ||
| 28 | #endif /* _WINUSER_EXTRA_H_ */ |