comparison src/protocols/msn/user.h @ 5475:ad9887c91a59

[gaim-migrate @ 5871] Fixed our support for the standard. I misread the discussion and used an alternative proposal. So now we use the new, correct one. Basically, what this means to the users is that 0.64 users will still see 0.63 MSN buddy icons, but 0.63 won't see 0.64's. No big deal. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Thu, 22 May 2003 01:31:56 +0000
parents 0436e39c70cf
children bf2a7a7b739d
comparison
equal deleted inserted replaced
5474:0b355ec51083 5475:ad9887c91a59
49 49
50 int group_id; /**< The group ID. */ 50 int group_id; /**< The group ID. */
51 51
52 size_t ref_count; /**< The reference count. */ 52 size_t ref_count; /**< The reference count. */
53 53
54 GHashTable *clientinfo; /**< The client information. */ 54 GHashTable *clientcaps; /**< The client's capabilities. */
55 }; 55 };
56 56
57 /** 57 /**
58 * A collection of users. 58 * A collection of users.
59 */ 59 */
207 * Sets the client information for a user. 207 * Sets the client information for a user.
208 * 208 *
209 * @param user The user. 209 * @param user The user.
210 * @param info The client information. 210 * @param info The client information.
211 */ 211 */
212 void msn_user_set_client_info(MsnUser *user, GHashTable *info); 212 void msn_user_set_client_caps(MsnUser *user, GHashTable *info);
213 213
214 /** 214 /**
215 * Returns the client information for a user. 215 * Returns the client information for a user.
216 * 216 *
217 * @param user The user. 217 * @param user The user.
218 * 218 *
219 * @return The client information. 219 * @return The client information.
220 */ 220 */
221 GHashTable *msn_user_get_client_info(const MsnUser *user); 221 GHashTable *msn_user_get_client_caps(const MsnUser *user);
222 222
223 /** 223 /**
224 * Creates a new MsnUsers structure. 224 * Creates a new MsnUsers structure.
225 * 225 *
226 * @return A new MsnUsers structure. 226 * @return A new MsnUsers structure.