comparison libpurple/prpl.h @ 24797:9216da5184a2

Add a comment that 0 should be used when a buddies idle time is unknown
author Mark Doliner <mark@kingant.net>
date Wed, 17 Dec 2008 18:21:47 +0000
parents d8452c0bec7b
children f0c2e27c7ae7 a4d6e2c1e73b 584063555949
comparison
equal deleted inserted replaced
24796:c2054d8d23fc 24797:9216da5184a2
635 * @param account The account the user is on. 635 * @param account The account the user is on.
636 * @param name The screen name of the user. 636 * @param name The screen name of the user.
637 * @param idle The user's idle state. 637 * @param idle The user's idle state.
638 * @param idle_time The user's idle time. This is the time at 638 * @param idle_time The user's idle time. This is the time at
639 * which the user became idle, in seconds since 639 * which the user became idle, in seconds since
640 * the epoch. 640 * the epoch. If the PRPL does not know this value
641 * then it should pass 0.
641 */ 642 */
642 void purple_prpl_got_user_idle(PurpleAccount *account, const char *name, 643 void purple_prpl_got_user_idle(PurpleAccount *account, const char *name,
643 gboolean idle, time_t idle_time); 644 gboolean idle, time_t idle_time);
644 645
645 /** 646 /**