comparison src/conversation.h @ 10805:4151d16f6348

[gaim-migrate @ 12453] i vote this goes away committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Sun, 10 Apr 2005 02:22:15 +0000
parents 4829abdc5c35
children 8d52201620d0
comparison
equal deleted inserted replaced
10804:6dcfec6f2f7c 10805:4151d16f6348
797 * @return A GList of all chats. 797 * @return A GList of all chats.
798 */ 798 */
799 GList *gaim_get_chats(void); 799 GList *gaim_get_chats(void);
800 800
801 /** 801 /**
802 * Finds the conversation with the specified type and name. In most
803 * cases you should use gaim_find_conversation_with_account() instead
804 * of this.
805 *
806 * @param type The type of the conversation.
807 * @param name The name of the conversation.
808 *
809 * @return The conversation if found, or @c NULL otherwise.
810 */
811 GaimConversation *gaim_find_conversation(GaimConversationType type,
812 const char *name);
813
814 /**
815 * Finds a conversation with the specified type, name, and Gaim account. 802 * Finds a conversation with the specified type, name, and Gaim account.
816 * 803 *
817 * @param type The type of the conversation. 804 * @param type The type of the conversation.
818 * @param name The name of the conversation. 805 * @param name The name of the conversation.
819 * @param account The gaim_account associated with the conversation. 806 * @param account The gaim_account associated with the conversation.