| 88 |
88 |
| 89 /** |
89 /** |
| 90 * Finds a conversation of any type with the specified name and Purple account. |
90 * Finds a conversation of any type with the specified name and Purple account. |
| 91 * |
91 * |
| 92 * @param name The name of the conversation. |
92 * @param name The name of the conversation. |
| 93 * @param account The purple_account associated with the conversation. |
93 * @param account The account associated with the conversation. |
| 94 * |
94 * |
| 95 * @return The conversation if found, or @c NULL otherwise. |
95 * @return The conversation if found, or @c NULL otherwise. |
| 96 */ |
96 */ |
| 97 PurpleConversation *purple_conversations_find_with_account(const char *name, |
97 PurpleConversation *purple_conversations_find_with_account(const char *name, |
| 98 const PurpleAccount *account); |
98 const PurpleAccount *account); |
| 99 |
99 |
| 100 /** |
100 /** |
| 101 * Finds an IM with the specified name and Purple account. |
101 * Finds an IM with the specified name and Purple account. |
| 102 * |
102 * |
| 103 * @param name The name of the conversation. |
103 * @param name The name of the conversation. |
| 104 * @param account The purple_account associated with the conversation. |
104 * @param account The account associated with the conversation. |
| 105 * |
105 * |
| 106 * @return The conversation if found, or @c NULL otherwise. |
106 * @return The conversation if found, or @c NULL otherwise. |
| 107 */ |
107 */ |
| 108 PurpleIMConversation *purple_conversations_find_im_with_account(const char *name, |
108 PurpleIMConversation *purple_conversations_find_im_with_account(const char *name, |
| 109 const PurpleAccount *account); |
109 const PurpleAccount *account); |
| 110 |
110 |
| 111 /** |
111 /** |
| 112 * Finds a chat with the specified name and Purple account. |
112 * Finds a chat with the specified name and Purple account. |
| 113 * |
113 * |
| 114 * @param name The name of the conversation. |
114 * @param name The name of the conversation. |
| 115 * @param account The purple_account associated with the conversation. |
115 * @param account The account associated with the conversation. |
| 116 * |
116 * |
| 117 * @return The conversation if found, or @c NULL otherwise. |
117 * @return The conversation if found, or @c NULL otherwise. |
| 118 */ |
118 */ |
| 119 PurpleChatConversation *purple_conversations_find_chat_with_account(const char *name, |
119 PurpleChatConversation *purple_conversations_find_chat_with_account(const char *name, |
| 120 const PurpleAccount *account); |
120 const PurpleAccount *account); |