aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/bee.h
diff options
context:
space:
mode:
authorMarius Halden <marius.h@lden.org>2016-07-13 09:29:53 +0200
committerMarius Halden <marius.h@lden.org>2016-07-13 09:29:53 +0200
commitd9eec2027b7b6c848db465c9b17f72f70864bb25 (patch)
tree2af95ef84b5ab54adcca75cd33d89674c172b7cc /protocols/bee.h
parent0e1b8357a5a15891caf92eeb888e3f272dedf1d6 (diff)
Revert "Added an interface for the listing of existing chatrooms"
This reverts commit 659df4e333f2f524350dd131e430faaeb66dd91a.
Diffstat (limited to 'protocols/bee.h')
-rw-r--r--protocols/bee.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/protocols/bee.h b/protocols/bee.h
index 8e665ac8..d22e4d85 100644
--- a/protocols/bee.h
+++ b/protocols/bee.h
@@ -83,14 +83,6 @@ typedef struct bee_user {
void *data; /* Can be used by the IM module. */
} bee_user_t;
-typedef struct bee_chat_info {
- char *title;
- char *topic;
-
- /* If less than zero, the user count is ignored when displaying */
- int userc;
-} bee_chat_info_t;
-
/* This one's mostly used so save space and make it easier (cheaper) to
compare groups of contacts, etc. */
typedef struct bee_group {
@@ -192,6 +184,4 @@ G_MODULE_EXPORT int bee_chat_msg(bee_t *bee, struct groupchat *c, const char *ms
G_MODULE_EXPORT struct groupchat *bee_chat_by_title(bee_t *bee, struct im_connection *ic, const char *title);
G_MODULE_EXPORT void imcb_chat_invite(struct im_connection *ic, const char *name, const char *who, const char *msg);
-G_MODULE_EXPORT void bee_chat_list_finish(struct im_connection *ic);
-
#endif /* __BEE_H__ */