1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-12-10 01:46:34 +01:00

Refactor groupchats

This commit is contained in:
Jfreegman
2015-07-16 17:10:04 -04:00
parent 0597152352
commit 15ef50e46c
7 changed files with 142 additions and 161 deletions

View File

@@ -574,6 +574,7 @@ static void init_tox_callbacks(Tox *m)
tox_callback_group_peer_join(m, on_group_peer_join, NULL);
tox_callback_group_peer_exit(m, on_group_peer_exit, NULL);
tox_callback_group_peer_name(m, on_group_nick_change, NULL);
tox_callback_group_peer_status(m, on_group_status_change, NULL);
tox_callback_group_topic(m, on_group_topic_change, NULL);
tox_callback_group_peer_limit(m, on_group_peer_limit, NULL);
tox_callback_group_privacy_state(m, on_group_privacy_state, NULL);