comparison src/protocols/msn/switchboard.h @ 10451:92d4a25fd33c

[gaim-migrate @ 11717] This is patch 1090620 from Felipe Contreras to improve the handling of the Individuals group on MSN and better buddy updates (modified by me to work in HEAD) Also included is my fix for bug 1090087 "MSN Groupchat Double Invite Crash", a few spelling corrections, and make some more strings translatable. committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Thu, 30 Dec 2004 15:55:19 +0000
parents e5455f1dc9b6
children 9bed28273ec7
comparison
equal deleted inserted replaced
10450:577fdf4110fc 10451:92d4a25fd33c
43 MSN_SB_ERROR_NONE, /**< No error. */ 43 MSN_SB_ERROR_NONE, /**< No error. */
44 MSN_SB_ERROR_CAL, /**< The user could not join (answer the call). */ 44 MSN_SB_ERROR_CAL, /**< The user could not join (answer the call). */
45 MSN_SB_ERROR_OFFLINE, /**< The account is offline. */ 45 MSN_SB_ERROR_OFFLINE, /**< The account is offline. */
46 MSN_SB_ERROR_USER_OFFLINE, /**< The user to call is offline. */ 46 MSN_SB_ERROR_USER_OFFLINE, /**< The user to call is offline. */
47 MSN_SB_ERROR_CONNECTION, /**< There was a connection error. */ 47 MSN_SB_ERROR_CONNECTION, /**< There was a connection error. */
48 MSN_SB_ERROR_UNKNOWN /**< An unknown error occured. */ 48 MSN_SB_ERROR_UNKNOWN /**< An unknown error occurred. */
49 49
50 } MsnSBErrorType; 50 } MsnSBErrorType;
51 51
52 /* 52 /*
53 * A switchboard A place where a bunch of users send messages to the rest 53 * A switchboard A place where a bunch of users send messages to the rest
84 int chat_id; 84 int chat_id;
85 85
86 GQueue *im_queue; /**< Queue of messages to send. */ 86 GQueue *im_queue; /**< Queue of messages to send. */
87 GList *ack_list; /**< List of messages waiting for an ack. */ 87 GList *ack_list; /**< List of messages waiting for an ack. */
88 88
89 MsnSBErrorType error; /**< The error that occured in this switchboard 89 MsnSBErrorType error; /**< The error that occurred in this switchboard
90 (if applicable). */ 90 (if applicable). */
91 MsnSlpLink *slplink; /**< The slplink that is using this switchboard. */ 91 MsnSlpLink *slplink; /**< The slplink that is using this switchboard. */
92 }; 92 };
93 93
94 /** 94 /**