comparison src/protocols/msn/user.h @ 6788:c1995194e3d1

[gaim-migrate @ 7327] MsnUser can now store a MsnObject. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 07 Sep 2003 23:53:52 +0000
parents faa491042c66
children 8f228a7d5076
comparison
equal deleted inserted replaced
6787:faa491042c66 6788:c1995194e3d1
174 * @param number The mobile phone number. 174 * @param number The mobile phone number.
175 */ 175 */
176 void msn_user_set_mobile_phone(MsnUser *user, const char *number); 176 void msn_user_set_mobile_phone(MsnUser *user, const char *number);
177 177
178 /** 178 /**
179 * Sets the MSNObject for a user.
180 *
181 * @param user The user.
182 * @param obj The MSNObject.
183 */
184 void msn_user_set_object(MsnUser *user, MsnObject *obj);
185
186 /**
187 * Sets the client information for a user.
188 *
189 * @param user The user.
190 * @param info The client information.
191 */
192 void msn_user_set_client_caps(MsnUser *user, GHashTable *info);
193
194
195 /**
179 * Returns the passport account for a user. 196 * Returns the passport account for a user.
180 * 197 *
181 * @param user The user. 198 * @param user The user.
182 * 199 *
183 * @return The passport account. 200 * @return The passport account.
228 * @return The user's mobile phone number. 245 * @return The user's mobile phone number.
229 */ 246 */
230 const char *msn_user_get_mobile_phone(const MsnUser *user); 247 const char *msn_user_get_mobile_phone(const MsnUser *user);
231 248
232 /** 249 /**
233 * Sets the client information for a user. 250 * Returns the MSNObject for a user.
234 * 251 *
235 * @param user The user. 252 * @param user The user.
236 * @param info The client information. 253 *
237 */ 254 * @return The MSNObject.
238 void msn_user_set_client_caps(MsnUser *user, GHashTable *info); 255 */
256 MsnObject *msn_user_get_object(const MsnUser *user);
239 257
240 /** 258 /**
241 * Returns the client information for a user. 259 * Returns the client information for a user.
242 * 260 *
243 * @param user The user. 261 * @param user The user.