Mercurial > pidgin
changeset 11622:32287ea1fce0
[gaim-migrate @ 13897]
This patch, from Kris Marsh (moogman), updates a couple client capabilities names in the MSN prpl and adds a new one. They're not currently in use, but this is a simple patch and I think it's important that we have the most current understanding of the capability bits represented in the enum.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Sat, 08 Oct 2005 00:51:51 +0000 |
parents | e0a61622a9f2 |
children | fd74e7b67682 |
files | COPYRIGHT src/protocols/msn/msn.h |
diffstat | 2 files changed, 13 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/COPYRIGHT Fri Oct 07 22:33:43 2005 +0000 +++ b/COPYRIGHT Sat Oct 08 00:51:51 2005 +0000 @@ -137,6 +137,7 @@ Brian Macke Paolo Maggi Willian T. Mahan +Kris Marsh Fidel Martinez Lalo Martins John Matthews
--- a/src/protocols/msn/msn.h Fri Oct 07 22:33:43 2005 +0000 +++ b/src/protocols/msn/msn.h Sat Oct 08 00:51:51 2005 +0000 @@ -91,17 +91,18 @@ typedef enum { - MSN_CLIENT_CAP_WIN_MOBILE = 0x0001, - MSN_CLIENT_CAP_UNKNOWN_1 = 0x0002, - MSN_CLIENT_CAP_VIEW_INK = 0x0004, - MSN_CLIENT_CAP_SEND_INK = 0x0008, - MSN_CLIENT_CAP_VIDEO_CHAT = 0x0010, - MSN_CLIENT_CAP_BASE = 0x0020, - MSN_CLIENT_CAP_MSNMOBILE = 0x0040, - MSN_CLIENT_CAP_MSNDIRECT = 0x0080, - MSN_CLIENT_CAP_WEBMSGR = 0x0100, - MSN_CLIENT_CAP_DIRECTIM = 0x4000, - MSN_CLIENT_CAP_WINKRCV = 0x8000 + MSN_CLIENT_CAP_WIN_MOBILE = 0x00001, + MSN_CLIENT_CAP_UNKNOWN_1 = 0x00002, + MSN_CLIENT_CAP_INK_GIF = 0x00004, + MSN_CLIENT_CAP_INK_ISF = 0x00008, + MSN_CLIENT_CAP_VIDEO_CHAT = 0x00010, + MSN_CLIENT_CAP_BASE = 0x00020, + MSN_CLIENT_CAP_MSNMOBILE = 0x00040, + MSN_CLIENT_CAP_MSNDIRECT = 0x00080, + MSN_CLIENT_CAP_WEBMSGR = 0x00100, + MSN_CLIENT_CAP_DIRECTIM = 0x04000, + MSN_CLIENT_CAP_WINKS = 0x08000, + MSN_CLIENT_CAP_SEARCH = 0x10000 } MsnClientCaps;