comparison libpurple/protocols/msn/user.h @ 29347:452043d200f0

Replace guint membership_id[5] with guint member_id_on_pending_list in MsnUser. We were only using this value for MSN_LIST_PL, so don't bother storing it for other list types. Saves the size of 4 pointers per MSN buddy.
author Mark Doliner <mark@kingant.net>
date Wed, 03 Feb 2010 22:19:11 +0000
parents 2a95e8bd9b80
children 99d1b433dba0
comparison
equal deleted inserted replaced
29346:36dff94b1b53 29347:452043d200f0
101 101
102 MsnNetwork networkid; /**< The user's network */ 102 MsnNetwork networkid; /**< The user's network */
103 103
104 int list_op; /**< Which lists the user is in */ 104 int list_op; /**< Which lists the user is in */
105 105
106 guint membership_id[5]; /**< The membershipId sent by the contacts server, 106 /**
107 indexed by the list it belongs to */ 107 * The membershipId for this buddy on our pending list. Sent by
108 * the contact's server
109 */
110 guint member_id_on_pending_list;
108 111
109 char *invite_message; /**< Invite message of user request */ 112 char *invite_message; /**< Invite message of user request */
110 }; 113 };
111 114
112 /************************************************************************** 115 /**************************************************************************