comparison src/protocols/msn/user.h @ 6787:faa491042c66

[gaim-migrate @ 7326] the add_buddy prpl op now takes a group. It's horribly inconsistent with the rest. This stuff all needs to be updated. Maybe I'll replace it in 0.70cvs. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 07 Sep 2003 23:47:00 +0000
parents b7e113a59b51
children c1995194e3d1
comparison
equal deleted inserted replaced
6786:8efafdc38718 6787:faa491042c66
24 24
25 typedef struct _MsnUser MsnUser; 25 typedef struct _MsnUser MsnUser;
26 typedef struct _MsnUsers MsnUsers; 26 typedef struct _MsnUsers MsnUsers;
27 27
28 #include "session.h" 28 #include "session.h"
29 #include "msnobject.h"
29 30
30 /** 31 /**
31 * A user. 32 * A user.
32 */ 33 */
33 struct _MsnUser 34 struct _MsnUser
49 50
50 GList *group_ids; /**< The group IDs. */ 51 GList *group_ids; /**< The group IDs. */
51 52
52 size_t ref_count; /**< The reference count. */ 53 size_t ref_count; /**< The reference count. */
53 54
55 MsnObject *msnobj; /**< The user's MSN Object. */
56
54 GHashTable *clientcaps; /**< The client's capabilities. */ 57 GHashTable *clientcaps; /**< The client's capabilities. */
55 }; 58 };
56 59
57 /** 60 /**
58 * A collection of users. 61 * A collection of users.