comparison src/protocols/msn/msg.h @ 11321:95fa774d216d

[gaim-migrate @ 13525] Kill off the conversation closed notices Fix for setting the ACK id on slpmsg ACKs which might improve things for other clients (see bug #1222320) Clean up some debugging stuff Add support for sending and receiving Nudges (Based on patch #1169352) Add an account action to go direct to a Hotmail Inbox committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Sun, 21 Aug 2005 17:14:22 +0000
parents 92d4a25fd33c
children 1aa5494587e8
comparison
equal deleted inserted replaced
11320:d3b567926e8f 11321:95fa774d216d
48 { 48 {
49 MSN_MSG_UNKNOWN, 49 MSN_MSG_UNKNOWN,
50 MSN_MSG_TEXT, 50 MSN_MSG_TEXT,
51 MSN_MSG_TYPING, 51 MSN_MSG_TYPING,
52 MSN_MSG_CAPS, 52 MSN_MSG_CAPS,
53 MSN_MSG_SLP 53 MSN_MSG_SLP,
54 MSN_MSG_NUDGE
54 55
55 } MsnMsgType; 56 } MsnMsgType;
56 57
57 typedef enum 58 typedef enum
58 { 59 {
136 * 137 *
137 * @return A new MSNSLP message. 138 * @return A new MSNSLP message.
138 */ 139 */
139 MsnMessage *msn_message_new_msnslp(void); 140 MsnMessage *msn_message_new_msnslp(void);
140 141
142 /**
143 * Creates a new nudge message.
144 *
145 * @return A new nudge message.
146 */
147 MsnMessage *msn_message_new_nudge(void);
148
149 /**
150 * Creates a new plain message.
151 *
152 * @return A new plain message.
153 */
141 MsnMessage *msn_message_new_plain(const char *message); 154 MsnMessage *msn_message_new_plain(const char *message);
142 155
143 /** 156 /**
144 * Creates a MSNSLP ack message. 157 * Creates a MSNSLP ack message.
145 * 158 *