Mercurial > pidgin
changeset 30800:e6447e4062da
Add support for Parts in the MsnSlpMessages and MsnMessages structs.
author | masca@cpw.pidgin.im |
---|---|
date | Wed, 16 Jun 2010 21:55:23 +0000 |
parents | cce127730270 |
children | fd8abea40a0d |
files | libpurple/protocols/msn/msg.h libpurple/protocols/msn/slpmsg.h |
diffstat | 2 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/msn/msg.h Wed Jun 16 21:53:08 2010 +0000 +++ b/libpurple/protocols/msn/msg.h Wed Jun 16 21:55:23 2010 +0000 @@ -59,6 +59,7 @@ #include "transaction.h" #include "user.h" #include "slpmsg.h" +#include "slpmsg_part.h" typedef void (*MsnMsgCb)(MsnMessage *, void *data); @@ -79,6 +80,7 @@ gboolean msnslp_message; MsnSlpMessage *slpmsg; + MsnSlpMessagePart *part; char *remote_user; char flag;
--- a/libpurple/protocols/msn/slpmsg.h Wed Jun 16 21:53:08 2010 +0000 +++ b/libpurple/protocols/msn/slpmsg.h Wed Jun 16 21:55:23 2010 +0000 @@ -76,6 +76,7 @@ long long size; GList *msgs; /**< The real messages. */ + GList *parts; /**< A list with the SlpMsgParts */ #if 1 MsnMessage *msg; /**< The temporary real message that will be sent. */