annotate src/win32/mingw_plus/winuser_extra.h @ 9465:8a4797a608ae

[gaim-migrate @ 10290] 1) Fixes the parsing for Win32 clipboard format so that we more accurately grab the right text 2) Revises our Win32 clipboard format conversion to act more like IE, since this is as close as we will get to "the right way" 3) Makes clipboard pasting not paste HTML comments (this one effects linux too, and fixes a problem i've seen pasting from oo.o) committer: Tailor Script <tailor@pidgin.im>
author Tim Ringenbach <marv@pidgin.im>
date Wed, 07 Jul 2004 01:35:27 +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_ */