comparison libpurple/prpl.h @ 18243:a8b19e002cb4

propagate from branch 'im.pidgin.pidgin' (head e9da27c3123d1223162bf9fb76f58822873e18f8) to branch 'im.pidgin.soc.2007.remotelogging' (head da5442aedd302aafb260948b66ce0549a3e0a0e4)
author Richard Laager <rlaager@wiktel.com>
date Sun, 24 Jun 2007 20:01:43 +0000
parents 72906c5ac037
children 5c1ed6296b56 0f46f13c0805 f12bf92d64ec
comparison
equal deleted inserted replaced
18176:b14dfa2f49a1 18243:a8b19e002cb4
376 * @param status_id The status ID. 376 * @param status_id The status ID.
377 * @param ... A NULL-terminated list of attribute IDs and values, 377 * @param ... A NULL-terminated list of attribute IDs and values,
378 * beginning with the value for @a attr_id. 378 * beginning with the value for @a attr_id.
379 */ 379 */
380 void purple_prpl_got_account_status(PurpleAccount *account, 380 void purple_prpl_got_account_status(PurpleAccount *account,
381 const char *status_id, ...); 381 const char *status_id, ...) G_GNUC_NULL_TERMINATED;
382 /** 382 /**
383 * Notifies Purple that a user's idle state and time have changed. 383 * Notifies Purple that a user's idle state and time have changed.
384 * 384 *
385 * This is meant to be called from protocol plugins. 385 * This is meant to be called from protocol plugins.
386 * 386 *
416 * @param status_id The status ID. 416 * @param status_id The status ID.
417 * @param ... A NULL-terminated list of attribute IDs and values, 417 * @param ... A NULL-terminated list of attribute IDs and values,
418 * beginning with the value for @a attr_id. 418 * beginning with the value for @a attr_id.
419 */ 419 */
420 void purple_prpl_got_user_status(PurpleAccount *account, const char *name, 420 void purple_prpl_got_user_status(PurpleAccount *account, const char *name,
421 const char *status_id, ...); 421 const char *status_id, ...) G_GNUC_NULL_TERMINATED;
422 422
423 /** 423 /**
424 * Notifies libpurple that a user's status has been deactivated 424 * Notifies libpurple that a user's status has been deactivated
425 * 425 *
426 * This is meant to be called from protocol plugins. 426 * This is meant to be called from protocol plugins.