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

implement group join rejection callback

This commit is contained in:
Jfreegman
2015-01-12 01:09:56 -05:00
parent ff3da5f657
commit 89637e7d2f
6 changed files with 72 additions and 3 deletions

View File

@@ -321,6 +321,7 @@ static Tox *init_tox(void)
tox_callback_group_topic_change(m, on_group_topic_change, NULL);
tox_callback_group_self_join(m, on_group_self_join, NULL);
tox_callback_group_self_timeout(m, on_group_self_timeout, NULL);
tox_callback_group_rejected(m, on_group_rejected, NULL);
tox_set_name(m, (uint8_t *) "Toxic User", strlen("Toxic User"));