diff 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
line wrap: on
line diff
--- a/src/protocols/msn/user.h	Sun Sep 07 23:47:00 2003 +0000
+++ b/src/protocols/msn/user.h	Sun Sep 07 23:53:52 2003 +0000
@@ -176,6 +176,23 @@
 void msn_user_set_mobile_phone(MsnUser *user, const char *number);
 
 /**
+ * Sets the MSNObject for a user.
+ *
+ * @param user The user.
+ * @param obj  The MSNObject.
+ */
+void msn_user_set_object(MsnUser *user, MsnObject *obj);
+
+/**
+ * Sets the client information for a user.
+ *
+ * @param user The user.
+ * @param info The client information.
+ */
+void msn_user_set_client_caps(MsnUser *user, GHashTable *info);
+
+
+/**
  * Returns the passport account for a user.
  *
  * @param user The user.
@@ -230,12 +247,13 @@
 const char *msn_user_get_mobile_phone(const MsnUser *user);
 
 /**
- * Sets the client information for a user.
+ * Returns the MSNObject for a user.
  *
  * @param user The user.
- * @param info The client information.
+ *
+ * @return The MSNObject.
  */
-void msn_user_set_client_caps(MsnUser *user, GHashTable *info);
+MsnObject *msn_user_get_object(const MsnUser *user);
 
 /**
  * Returns the client information for a user.