comparison src/account.h @ 11251:ad9a61894d9b

[gaim-migrate @ 13420] sf patch #1242524, from Sadrul Habib Chowdhury gaim_account_is_connected fix committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sat, 13 Aug 2005 05:54:34 +0000
parents b4b1be482b4e
children 519dc2186438
comparison
equal deleted inserted replaced
11250:4e25fb6678bd 11251:ad9a61894d9b
401 * @return @c TRUE if connected, or @c FALSE otherwise. 401 * @return @c TRUE if connected, or @c FALSE otherwise.
402 */ 402 */
403 gboolean gaim_account_is_connected(const GaimAccount *account); 403 gboolean gaim_account_is_connected(const GaimAccount *account);
404 404
405 /** 405 /**
406 * Returns whether or not the account is connecting.
407 *
408 * @param account The account.
409 *
410 * @return @c TRUE if connecting, or @c FALSE otherwise.
411 */
412 gboolean gaim_account_is_connecting(const GaimAccount *account);
413
414 /**
415 * Returns whether or not the account is disconnected.
416 *
417 * @param account The account.
418 *
419 * @return @c TRUE if disconnected, or @c FALSE otherwise.
420 */
421 gboolean gaim_account_is_disconnected(const GaimAccount *account);
422
423 /**
406 * Returns the account's username. 424 * Returns the account's username.
407 * 425 *
408 * @param account The account. 426 * @param account The account.
409 * 427 *
410 * @return The username. 428 * @return The username.