diff src/protocols/msn/user.h @ 5372:fa0217bec87e

[gaim-migrate @ 5748] The mobile state should now reflect the server under all cases. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Wed, 14 May 2003 07:50:26 +0000
parents ebebc833cf77
children 0436e39c70cf
line wrap: on
line diff
--- a/src/protocols/msn/user.h	Wed May 14 07:24:56 2003 +0000
+++ b/src/protocols/msn/user.h	Wed May 14 07:50:26 2003 +0000
@@ -32,24 +32,27 @@
  */
 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;
 
-	int group_id;           /**< The group ID.           */
+	gboolean allow_pages;   /**< Allows mobile messages.    */
+	gboolean mobile;        /**< Signed up with MSN Mobile. */
 
-	size_t ref_count;       /**< The reference count.    */
+	int group_id;           /**< The group ID.              */
 
-	GHashTable *clientinfo; /**< The client information. */
+	size_t ref_count;       /**< The reference count.       */
+
+	GHashTable *clientinfo; /**< The client information.    */
 };
 
 /**