6 * Copyright (C) 2005 Bartosz Oler <bartosz@bzimage.us>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
24 #ifndef _PURPLE_GG_CONFER_H
25 #define _PURPLE_GG_CONFER_H
30 * Finds a CHAT conversation for the current account with the specified name.
32 * @param gc PurpleConnection instance.
33 * @param name Name of the conversation.
35 * @return PurpleConversation or NULL if not found.
38 ggp_confer_find_by_name(PurpleConnection
*gc
, const gchar
*name
);
41 * Adds the specified UIN to the specified conversation.
43 * @param gc PurpleConnection.
44 * @param chat_name Name of the conversation.
47 ggp_confer_participants_add_uin(PurpleConnection
*gc
, const gchar
*chat_name
,
51 * Add the specified UINs to the specified conversation.
53 * @param gc PurpleConnection.
54 * @param chat_name Name of the conversation.
55 * @param recipients List of the UINs.
56 * @param count Number of the UINs.
59 ggp_confer_participants_add(PurpleConnection
*gc
, const gchar
*chat_name
,
60 const uin_t
*recipients
, int count
);
63 * Finds a conversation in which all the specified recipients participate.
65 * TODO: This function should be rewritten to better handle situations when
66 * somebody adds more people to the converation.
68 * @param gc PurpleConnection.
69 * @param recipients List of the people in the conversation.
70 * @param count Number of people.
72 * @return Name of the conversation.
75 ggp_confer_find_by_participants(PurpleConnection
*gc
, const uin_t
*recipients
,
79 * Adds a new conversation to the internal list of conversations.
80 * If name is NULL then it will be automagically generated.
82 * @param gc PurpleConnection.
83 * @param name Name of the conversation.
85 * @return Name of the conversation.
88 ggp_confer_add_new(PurpleConnection
*gc
, const char *name
);
91 #endif /* _PURPLE_GG_CONFER_H */
93 /* vim: set ts=8 sts=0 sw=8 noet: */