comparison src/protocols/msn/msg.h @ 10346:bbf738a0ce7b

[gaim-migrate @ 11560] More more MSN bug fixes from Felipe Contreras, and I fixed up the display of messages that failed to send so that it matches what you tried to send and doesn't have kittens with html entities and such. I added a GAIM_MESSAGE_RAW type in HEAD to make the display of such messages even more accurate, but I don't think such a cosmetic change, which would bump us to 1.2.0, is all that important for oldstatus. committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Sun, 12 Dec 2004 17:37:36 +0000
parents 2e01c503aa4f
children 92d4a25fd33c
comparison
equal deleted inserted replaced
10345:2e01c503aa4f 10346:bbf738a0ce7b
107 MsnSlpFooter msnslp_footer; 107 MsnSlpFooter msnslp_footer;
108 108
109 GHashTable *attr_table; 109 GHashTable *attr_table;
110 GList *attr_list; 110 GList *attr_list;
111 111
112 gboolean ack_ref; /**< A flag that states if this message has
113 been ref'ed for using it in a callback. */
114
112 MsnCommand *cmd; 115 MsnCommand *cmd;
113 MsnTransaction *trans; 116 MsnTransaction *trans;
114 117
115 MsnMsgCb ack_cb; /**< The callback to call when we receive an ACK of this 118 MsnMsgCb ack_cb; /**< The callback to call when we receive an ACK of this
116 message. */ 119 message. */
117 MsnMsgCb nak_cb; /**< The callback to call when we receive a NAK of this 120 MsnMsgCb nak_cb; /**< The callback to call when we receive a NAK of this
118 message. */ 121 message. */
119 void *ack_data; /**< The data used by callbacks. */ 122 void *ack_data; /**< The data used by callbacks. */
120 123
121 MsnMsgErrorType error; /**< The error of the message. */ 124 MsnMsgErrorType error; /**< The error of the message. */
122 }; 125 };
123 126