Added group chat code.

This commit is contained in:
Håvard Pettersson 2014-10-04 20:57:29 +02:00
parent 225e576d57
commit 4c6e739527
2 changed files with 91 additions and 21 deletions

View file

@ -39,7 +39,7 @@ struct t_twc_chat
struct t_gui_buffer *buffer;
int32_t friend_number;
int32_t group_number;
};
struct t_twc_chat *
@ -47,6 +47,11 @@ twc_chat_search_friend(struct t_twc_profile *profile,
int32_t friend_number,
bool create_new);
struct t_twc_chat *
twc_chat_search_group(struct t_twc_profile *profile,
int32_t group_number,
bool create_new);
struct t_twc_chat *
twc_chat_search_buffer(struct t_gui_buffer *target_buffer);