diff src/protocols/msn/user.h @ 6800:8f228a7d5076

[gaim-migrate @ 7340] Added what I have of MSNSLP in my tree. It's broken, and therefore disabled, but I need to get this out so I can do other stuff too, and have something to revert back to if I break something :) committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Wed, 10 Sep 2003 00:24:48 +0000
parents c1995194e3d1
children 3a48ade4f510
line wrap: on
line diff
--- a/src/protocols/msn/user.h	Tue Sep 09 16:55:10 2003 +0000
+++ b/src/protocols/msn/user.h	Wed Sep 10 00:24:48 2003 +0000
@@ -33,28 +33,29 @@
  */
 struct _MsnUser
 {
-	MsnSession *session;    /**< The MSN session.           */
+	MsnSession *session;    /**< The MSN session.             */
 
-	char *passport;         /**< The passport account.      */
-	char *name;             /**< The friendly name.         */
+	char *passport;         /**< The passport account.        */
+	char *name;             /**< The friendly name.           */
 
 	struct
 	{
-		char *home;         /**< Home phone number.         */
-		char *work;         /**< Work phone number.         */
-		char *mobile;       /**< Mobile phone number.       */
+		char *home;         /**< Home phone number.           */
+		char *work;         /**< Work phone number.           */
+		char *mobile;       /**< Mobile phone number.         */
 
 	} phone;
 
-	gboolean mobile;        /**< Signed up with MSN Mobile. */
+	gboolean authorized;    /**< Authorized to add this user. */
+	gboolean mobile;        /**< Signed up with MSN Mobile.   */
 
-	GList *group_ids;       /**< The group IDs.             */
+	GList *group_ids;       /**< The group IDs.               */
 
-	size_t ref_count;       /**< The reference count.       */
+	size_t ref_count;       /**< The reference count.         */
 
-	MsnObject *msnobj;      /**< The user's MSN Object.     */
+	MsnObject *msnobj;      /**< The user's MSN Object.       */
 
-	GHashTable *clientcaps; /**< The client's capabilities. */
+	GHashTable *clientcaps; /**< The client's capabilities.   */
 };
 
 /**