summaryrefslogtreecommitdiff
path: root/protocols/Tox/libtox/src/toxcore/tox_unpack.h
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2024-02-15 12:18:35 +0300
committerGeorge Hazan <george.hazan@gmail.com>2024-02-15 12:18:35 +0300
commit31e72718ee54867accf0b739a24adc86f8b7ab54 (patch)
treef964c10c5d97d9fe4fd2bd8187c250faedcb0fd7 /protocols/Tox/libtox/src/toxcore/tox_unpack.h
parent282e9c18d9d3b726cce3d2ef0babc88029661cb8 (diff)
libtox update
Diffstat (limited to 'protocols/Tox/libtox/src/toxcore/tox_unpack.h')
-rw-r--r--protocols/Tox/libtox/src/toxcore/tox_unpack.h18
1 files changed, 12 insertions, 6 deletions
diff --git a/protocols/Tox/libtox/src/toxcore/tox_unpack.h b/protocols/Tox/libtox/src/toxcore/tox_unpack.h
index 5f0b18ad1b..828d2947a6 100644
--- a/protocols/Tox/libtox/src/toxcore/tox_unpack.h
+++ b/protocols/Tox/libtox/src/toxcore/tox_unpack.h
@@ -9,10 +9,16 @@
#include "bin_unpack.h"
#include "tox.h"
-non_null() bool tox_unpack_conference_type(Bin_Unpack *bu, Tox_Conference_Type *val);
-non_null() bool tox_unpack_connection(Bin_Unpack *bu, Tox_Connection *val);
-non_null() bool tox_unpack_file_control(Bin_Unpack *bu, Tox_File_Control *val);
-non_null() bool tox_unpack_message_type(Bin_Unpack *bu, Tox_Message_Type *val);
-non_null() bool tox_unpack_user_status(Bin_Unpack *bu, Tox_User_Status *val);
+non_null() bool tox_conference_type_unpack(Tox_Conference_Type *val, Bin_Unpack *bu);
+non_null() bool tox_connection_unpack(Tox_Connection *val, Bin_Unpack *bu);
+non_null() bool tox_file_control_unpack(Tox_File_Control *val, Bin_Unpack *bu);
+non_null() bool tox_message_type_unpack(Tox_Message_Type *val, Bin_Unpack *bu);
+non_null() bool tox_user_status_unpack(Tox_User_Status *val, Bin_Unpack *bu);
+non_null() bool tox_group_privacy_state_unpack(Tox_Group_Privacy_State *val, Bin_Unpack *bu);
+non_null() bool tox_group_voice_state_unpack(Tox_Group_Voice_State *val, Bin_Unpack *bu);
+non_null() bool tox_group_topic_lock_unpack(Tox_Group_Topic_Lock *val, Bin_Unpack *bu);
+non_null() bool tox_group_join_fail_unpack(Tox_Group_Join_Fail *val, Bin_Unpack *bu);
+non_null() bool tox_group_mod_event_unpack(Tox_Group_Mod_Event *val, Bin_Unpack *bu);
+non_null() bool tox_group_exit_type_unpack(Tox_Group_Exit_Type *val, Bin_Unpack *bu);
-#endif // C_TOXCORE_TOXCORE_TOX_UNPACK_H
+#endif /* C_TOXCORE_TOXCORE_TOX_UNPACK_H */