aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/nogaim.h
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2007-04-22 13:44:27 -0700
committerWilmer van der Gaast <wilmer@gaast.net>2007-04-22 13:44:27 -0700
commite35d1a121d5fb2da3698fbe4a365fe38d0097665 (patch)
tree390223f2df5aaaebb35c1bb118cbf2fbd69ecab9 /protocols/nogaim.h
parentc737ba70c7b3510ffb6bed8f9373e63b1a150c1b (diff)
Read-only support for Jabber conferences (non-anonymous rooms only).
Just don't use this, you're really not going to like it. :-)
Diffstat (limited to 'protocols/nogaim.h')
-rw-r--r--protocols/nogaim.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/protocols/nogaim.h b/protocols/nogaim.h
index 59f9e870..b26cf73e 100644
--- a/protocols/nogaim.h
+++ b/protocols/nogaim.h
@@ -90,17 +90,15 @@ struct im_connection
/* BitlBee */
irc_t *irc;
- struct groupchat *conversations;
+ struct groupchat *groupchats;
};
struct groupchat {
struct im_connection *ic;
- /* stuff used just for chat */
GList *in_room;
GList *ignored;
- /* BitlBee */
struct groupchat *next;
char *channel;
char *title;
@@ -207,7 +205,7 @@ G_MODULE_EXPORT struct groupchat *imcb_chat_new( struct im_connection *ic, char
G_MODULE_EXPORT void imcb_chat_add_buddy( struct groupchat *b, char *handle );
G_MODULE_EXPORT void imcb_chat_remove_buddy( struct groupchat *b, char *handle, char *reason );
G_MODULE_EXPORT void imcb_chat_msg( struct groupchat *c, char *who, char *msg, u_int32_t flags, time_t sent_at );
-G_MODULE_EXPORT void imcb_chat_removed( struct groupchat *c );
+G_MODULE_EXPORT void imcb_chat_free( struct groupchat *c );
struct groupchat *chat_by_channel( char *channel );
/* Actions, or whatever. */