Mercurial > pidgin.yaz
annotate src/win32/mingw_plus/winuser_extra.h @ 6804:3ef17670e69f
[gaim-migrate @ 7344]
Tim Ringenbach (marv_sf) writes:
" This fixes the /me stuff in yahoo chat's. Previously it
only worked if there was nothing before the /me, but
now we borrow the meify function from gtkconv.c in
order to also ignore leading html when considing the
meifation of a message.
There's also a 2 line fix to yahoo.c that fixes an
issue where buddies would sometimes get stuck idle.
That should probably be a seperate patch, oops. At
least its a seperate hunk."
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Wed, 10 Sep 2003 15:10:23 +0000 |
parents | 473b1ea6b616 |
children | 92cbf9713795 |
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 |
e0ed2597587b
[gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
10 /* From MSDN Lib - Mingw dosn't have */ |
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 |
e0ed2597587b
[gaim-migrate @ 4152]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
19 /* From MSDN Lib - Mingw dosn't have */ |
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_ */ |