annotate src/win32/mingw_plus/winuser_extra.h @ 10708:d0d1d631ed49

[gaim-migrate @ 12297] Add some files I missed that are necessary for Gtk 2.4 support, actually commit the makefile changes to compile on Gtk 2.4, fix building with Gtk 2.6 which I broke. And some Gtk 2.2 support too, which should be considered experimental (where experimental means "almost completely broken"). Also a couple of tweaks which might make Gaim continue working after upgrading Gtk without rebuilding Gaim, but I haven't actually tested that. committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Sun, 20 Mar 2005 17:37:31 +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_ */