comparison libpurple/protocols/msn/user.h @ 24463:4fd22591e3f0

Send FQY as the first thing when adding a buddy so that we know what network they use. Should be helpful for adding federated buddies. References #6755.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Sun, 07 Dec 2008 07:09:57 +0000
parents e344426d7c28
children f5188d4d84e3
comparison
equal deleted inserted replaced
24462:2b4c909b40c4 24463:4fd22591e3f0
89 89
90 gboolean authorized; /**< Authorized to add this user. */ 90 gboolean authorized; /**< Authorized to add this user. */
91 gboolean mobile; /**< Signed up with MSN Mobile. */ 91 gboolean mobile; /**< Signed up with MSN Mobile. */
92 92
93 GList *group_ids; /**< The group IDs. */ 93 GList *group_ids; /**< The group IDs. */
94 char *pending_group; /**< A pending group to add. */
94 95
95 MsnObject *msnobj; /**< The user's MSN Object. */ 96 MsnObject *msnobj; /**< The user's MSN Object. */
96 97
97 GHashTable *clientcaps; /**< The client's capabilities. */ 98 GHashTable *clientcaps; /**< The client's capabilities. */
98 99
211 * @param id The group ID. 212 * @param id The group ID.
212 */ 213 */
213 void msn_user_remove_group_id(MsnUser *user, const char * id); 214 void msn_user_remove_group_id(MsnUser *user, const char * id);
214 215
215 /** 216 /**
217 * Sets the pending group for a user.
218 *
219 * @param user The user.
220 * @param group The group name.
221 */
222 void msn_user_set_pending_group(MsnUser *user, const char *group);
223
224 /**
225 * Removes the pending group from a user.
226 *
227 * @param user The user.
228 *
229 * @return Returns the pending group name.
230 */
231 char *msn_user_remove_pending_group(MsnUser *user);
232
233 /**
216 * Sets the home phone number for a user. 234 * Sets the home phone number for a user.
217 * 235 *
218 * @param user The user. 236 * @param user The user.
219 * @param number The home phone number. 237 * @param number The home phone number.
220 */ 238 */