diff options
Diffstat (limited to 'protocols/bee.h')
| -rw-r--r-- | protocols/bee.h | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/protocols/bee.h b/protocols/bee.h index d22e4d85..5f47e464 100644 --- a/protocols/bee.h +++ b/protocols/bee.h @@ -83,6 +83,11 @@ 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; +} 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 { @@ -184,4 +189,6 @@ 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__ */ | 
