comparison 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
comparison
equal deleted inserted replaced
5371:daaeaf4696a1 5372:fa0217bec87e
30 /** 30 /**
31 * A user. 31 * A user.
32 */ 32 */
33 struct _MsnUser 33 struct _MsnUser
34 { 34 {
35 MsnSession *session; /**< The MSN session. */ 35 MsnSession *session; /**< The MSN session. */
36 36
37 char *passport; /**< The passport account. */ 37 char *passport; /**< The passport account. */
38 char *name; /**< The friendly name. */ 38 char *name; /**< The friendly name. */
39 39
40 struct 40 struct
41 { 41 {
42 char *home; /**< Home phone number. */ 42 char *home; /**< Home phone number. */
43 char *work; /**< Work phone number. */ 43 char *work; /**< Work phone number. */
44 char *mobile; /**< Mobile phone number. */ 44 char *mobile; /**< Mobile phone number. */
45 45
46 } phone; 46 } phone;
47 47
48 int group_id; /**< The group ID. */ 48 gboolean allow_pages; /**< Allows mobile messages. */
49 49 gboolean mobile; /**< Signed up with MSN Mobile. */
50 size_t ref_count; /**< The reference count. */ 50
51 51 int group_id; /**< The group ID. */
52 GHashTable *clientinfo; /**< The client information. */ 52
53 size_t ref_count; /**< The reference count. */
54
55 GHashTable *clientinfo; /**< The client information. */
53 }; 56 };
54 57
55 /** 58 /**
56 * A collection of users. 59 * A collection of users.
57 */ 60 */