comparison libpurple/protocols/msn/user.h @ 30725:de59c181e6aa

MsnUserEndpoint->id isn't actually used, so let's not store it in the struct. It's used as the key in the endpoints hashtable, so hopefully we can get away with keeping only one copy of it
author Mark Doliner <mark@kingant.net>
date Thu, 22 Apr 2010 20:51:24 +0000
parents 6376fc7a092e
children 2a5dbea6ab6b
comparison
equal deleted inserted replaced
30724:5a70b5364229 30725:de59c181e6aa
120 120
121 /** 121 /**
122 * A specific user endpoint. 122 * A specific user endpoint.
123 */ 123 */
124 typedef struct MsnUserEndpoint { 124 typedef struct MsnUserEndpoint {
125 char *id; /**< The client's endpoint ID */
126 char *name; /**< The client's endpoint's name */ 125 char *name; /**< The client's endpoint's name */
127 int type; /**< The client's endpoint type */ 126 int type; /**< The client's endpoint type */
128 guint clientid; /**< The client's ID */ 127 guint clientid; /**< The client's ID */
129 guint extcaps; /**< The client's extended capabilites */ 128 guint extcaps; /**< The client's extended capabilites */
130 129