2023-07-25 11:53:09 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
* Copyright © 2022 The TokTok team.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef C_TOXCORE_TOXCORE_TOX_UNPACK_H
|
|
|
|
#define C_TOXCORE_TOXCORE_TOX_UNPACK_H
|
|
|
|
|
|
|
|
#include "attributes.h"
|
|
|
|
#include "bin_unpack.h"
|
|
|
|
#include "tox.h"
|
|
|
|
|
2023-12-27 12:37:22 +01:00
|
|
|
non_null() bool tox_conference_type_unpack(Bin_Unpack *bu, Tox_Conference_Type *val);
|
|
|
|
non_null() bool tox_connection_unpack(Bin_Unpack *bu, Tox_Connection *val);
|
|
|
|
non_null() bool tox_file_control_unpack(Bin_Unpack *bu, Tox_File_Control *val);
|
|
|
|
non_null() bool tox_message_type_unpack(Bin_Unpack *bu, Tox_Message_Type *val);
|
|
|
|
non_null() bool tox_user_status_unpack(Bin_Unpack *bu, Tox_User_Status *val);
|
|
|
|
non_null() bool tox_group_privacy_state_unpack(Bin_Unpack *bu, Tox_Group_Privacy_State *val);
|
|
|
|
non_null() bool tox_group_voice_state_unpack(Bin_Unpack *bu, Tox_Group_Voice_State *val);
|
|
|
|
non_null() bool tox_group_topic_lock_unpack(Bin_Unpack *bu, Tox_Group_Topic_Lock *val);
|
|
|
|
non_null() bool tox_group_join_fail_unpack(Bin_Unpack *bu, Tox_Group_Join_Fail *val);
|
|
|
|
non_null() bool tox_group_mod_event_unpack(Bin_Unpack *bu, Tox_Group_Mod_Event *val);
|
|
|
|
non_null() bool tox_group_exit_type_unpack(Bin_Unpack *bu, Tox_Group_Exit_Type *val);
|
2023-07-25 11:53:09 +02:00
|
|
|
|
|
|
|
#endif // C_TOXCORE_TOXCORE_TOX_UNPACK_H
|