comparison libpurple/blist.h @ 32810:d288f5215a9a

Add purple_contact_get_contact_size().
author andrew.victor@mxit.com
date Mon, 31 Oct 2011 20:35:39 +0000
parents 02a2e8183b1d
children
comparison
equal deleted inserted replaced
32809:76096c42f558 32810:d288f5215a9a
754 * @param contact The contact 754 * @param contact The contact
755 */ 755 */
756 void purple_contact_invalidate_priority_buddy(PurpleContact *contact); 756 void purple_contact_invalidate_priority_buddy(PurpleContact *contact);
757 757
758 /** 758 /**
759 * Determines the total size of a contact.
760 *
761 * @param contact The contact
762 * @param offline Count buddies in offline accounts
763 * @return The number of buddies in the contact
764 */
765 int purple_contact_get_contact_size(PurpleContact *contact, gboolean offline);
766
767 /**
759 * Removes a buddy from the buddy list and frees the memory allocated to it. 768 * Removes a buddy from the buddy list and frees the memory allocated to it.
760 * This doesn't actually try to remove the buddy from the server list. 769 * This doesn't actually try to remove the buddy from the server list.
761 * 770 *
762 * @param buddy The buddy to be removed 771 * @param buddy The buddy to be removed
763 * 772 *