annotate src/win32/mingw_plus/winuser_extra.h @ 11080:f54740547c95

[gaim-migrate @ 13092] All gaim signals are automatically relayed to dbus. committer: Tailor Script <tailor@pidgin.im>
author Piotr Zielinski <zielaj>
date Sun, 10 Jul 2005 02:29:52 +0000
parents 92cbf9713795
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3968
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
1 /*
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
2 * winuser_extra.h
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
3 *
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
4 * Description: The following is missing from mingw 1.1
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
5 */
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
6
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
7 #ifndef _WINUSER_EXTRA_H_
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
8 #define _WINUSER_EXTRA_H_
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
9
8735
92cbf9713795 [gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents: 4407
diff changeset
10 /* From MSDN Lib - Mingw doesn't have */
3968
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
11 #define FLASHW_STOP 0
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
12 #define FLASHW_CAPTION 0x00000001
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
13 #define FLASHW_TRAY 0x00000002
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
14 #define FLASHW_ALL (FLASHW_CAPTION | FLASHW_TRAY)
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
15 #define FLASHW_TIMER 0x00000004
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
16 #define FLASHW_TIMERNOFG 0x0000000C
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
17
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
18
8735
92cbf9713795 [gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents: 4407
diff changeset
19 /* From MSDN Lib - Mingw doesn't have */
3968
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
20 typedef struct {
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
21 UINT cbSize;
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
22 HWND hwnd;
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
23 DWORD dwFlags;
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
24 UINT uCount;
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
25 DWORD dwTimeout;
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
26 } FLASHWINFO, *PFLASHWINFO;
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
27
e0ed2597587b [gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
28 #endif /* _WINUSER_EXTRA_H_ */