comparison src/blist.h @ 10567:54f7939df8e3

[gaim-migrate @ 11951] 1) fix the Logged in: thing in tooltips because it disappeared in the status re-write 2) fix the logged in 49 thousand odd days here too committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Thu, 03 Feb 2005 15:37:13 +0000
parents 62fc579810f4
children 54ac161a876e
comparison
equal deleted inserted replaced
10566:62fc579810f4 10567:54f7939df8e3
111 char *name; /**< The screenname of the buddy. */ 111 char *name; /**< The screenname of the buddy. */
112 char *alias; /**< The user-set alias of the buddy */ 112 char *alias; /**< The user-set alias of the buddy */
113 char *server_alias; /**< The server-specified alias of the buddy. (i.e. MSN "Friendly Names") */ 113 char *server_alias; /**< The server-specified alias of the buddy. (i.e. MSN "Friendly Names") */
114 GaimBuddyPresenceState present; /**< This is 0 if the buddy appears offline, 1 if he appears online, and 2 if 114 GaimBuddyPresenceState present; /**< This is 0 if the buddy appears offline, 1 if he appears online, and 2 if
115 he has recently signed on */ 115 he has recently signed on */
116 time_t signon; /**< The time the buddy signed on. */
117 int uc; /**< This is a cryptic bitmask that makes sense only to the prpl. This will get changed */ 116 int uc; /**< This is a cryptic bitmask that makes sense only to the prpl. This will get changed */
118 void *proto_data; /**< This allows the prpl to associate whatever data it wants with a buddy */ 117 void *proto_data; /**< This allows the prpl to associate whatever data it wants with a buddy */
119 GaimBuddyIcon *icon; /**< The buddy icon. */ 118 GaimBuddyIcon *icon; /**< The buddy icon. */
120 GaimAccount *account; /**< the account this buddy belongs to */ 119 GaimAccount *account; /**< the account this buddy belongs to */
121 guint timer; /**< The timer handle. */ 120 guint timer; /**< The timer handle. */
258 * @param old_status The status from which we are changing. 257 * @param old_status The status from which we are changing.
259 */ 258 */
260 void gaim_blist_update_buddy_status(GaimBuddy *buddy, GaimStatus *old_status); 259 void gaim_blist_update_buddy_status(GaimBuddy *buddy, GaimStatus *old_status);
261 260
262 /** 261 /**
263 * Updates a buddy's signon time.
264 *
265 * @param buddy The buddy whose sign-on time has changed.
266 * @param signon The buddy's signon time since the dawn of the UNIX epoch.
267 */
268 void gaim_blist_update_buddy_signon(GaimBuddy *buddy, time_t signon);
269
270 /**
271 * Updates a buddy's icon. 262 * Updates a buddy's icon.
272 * 263 *
273 * @param buddy The buddy whose buddy icon has changed 264 * @param buddy The buddy whose buddy icon has changed
274 */ 265 */
275 void gaim_blist_update_buddy_icon(GaimBuddy *buddy); 266 void gaim_blist_update_buddy_icon(GaimBuddy *buddy);