diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-05-08 14:11:09 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-05-08 14:11:09 +0100 |
commit | 9e27f1841b1160d3506a3c48701a661e86f2173b (patch) | |
tree | 385f588fe715b0065d13001bba33b54efa93bb37 /protocols/bee.h | |
parent | d343eaaa2bf278a530de20a0841967e6e8759e96 (diff) |
Support for receiving chatroom topics. Since I didn't restore named chatroom
support I could only test this using gdb.
Diffstat (limited to 'protocols/bee.h')
-rw-r--r-- | protocols/bee.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/bee.h b/protocols/bee.h index c1b95881..e0ab0030 100644 --- a/protocols/bee.h +++ b/protocols/bee.h @@ -84,6 +84,7 @@ typedef struct bee_ui_funcs gboolean (*chat_msg)( bee_t *bee, struct groupchat *c, bee_user_t *bu, const char *msg, time_t sent_at ); gboolean (*chat_add_user)( bee_t *bee, struct groupchat *c, bee_user_t *bu ); gboolean (*chat_remove_user)( bee_t *bee, struct groupchat *c, bee_user_t *bu ); + gboolean (*chat_topic)( bee_t *bee, struct groupchat *c, const char *new, bee_user_t *bu ); gboolean (*chat_name_hint)( bee_t *bee, struct groupchat *c, const char *name ); struct file_transfer* (*ft_in_start)( bee_t *bee, bee_user_t *bu, const char *file_name, size_t file_size ); |