comparison libpurple/prpl.h @ 24838:0d7c21b5f1d7

propagate from branch 'im.pidgin.pidgin' (head c06356e8e8d2c586f0192a5564053c2584020da8) to branch 'im.pidgin.pidgin.openq' (head a7077bc12b850d60ea7d768f4b9d4ee6ae6ad2c1)
author SHiNE CsyFeK <csyfek@gmail.com>
date Thu, 25 Dec 2008 14:06:10 +0000
parents 9216da5184a2
children a4d6e2c1e73b 584063555949 f0c2e27c7ae7
comparison
equal deleted inserted replaced
24606:68eba2bafa6f 24838:0d7c21b5f1d7
187 /** 187 /**
188 * Indicates that slash commands are native to this protocol. 188 * Indicates that slash commands are native to this protocol.
189 * Used as a hint that unknown commands should not be sent as messages. 189 * Used as a hint that unknown commands should not be sent as messages.
190 * @since 2.1.0 190 * @since 2.1.0
191 */ 191 */
192 OPT_PROTO_SLASH_COMMANDS_NATIVE = 0x00000400, 192 OPT_PROTO_SLASH_COMMANDS_NATIVE = 0x00000400
193 193
194 } PurpleProtocolOptions; 194 } PurpleProtocolOptions;
195 195
196 /** 196 /**
197 * A protocol plugin information structure. 197 * A protocol plugin information structure.
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 /**