comparison src/prpl.h @ 10447:6feef0a9098a

[gaim-migrate @ 11712] A few minor improvements and some documentation updates. Conscious evolution in the back of your mind... committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Wed, 29 Dec 2004 21:53:59 +0000
parents 6a043ae92db6
children 94fd0bf8c4b1
comparison
equal deleted inserted replaced
10446:904d03bfccce 10447:6feef0a9098a
412 unsigned int level); 412 unsigned int level);
413 413
414 /** 414 /**
415 * Informs the server that an account's status changed. 415 * Informs the server that an account's status changed.
416 * 416 *
417 * @param account The account the user is on. 417 * @param account The account the user is on.
418 * @param status The status that was activated, or deactivated 418 * @param old_status The previous status.
419 * (in the case of independent statuses). 419 * @param new_status The status that was activated, or deactivated
420 */ 420 * (in the case of independent statuses).
421 void gaim_prpl_set_account_status(GaimAccount *account, GaimStatus *status); 421 */
422 void gaim_prpl_change_account_status(GaimAccount *account,
423 GaimStatus *old_status,
424 GaimStatus *new_status);
422 425
423 /** 426 /**
424 * Retrieves the list of stock status types from a prpl. 427 * Retrieves the list of stock status types from a prpl.
425 * 428 *
426 * @param account The account the user is on. 429 * @param account The account the user is on.