1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
/* SPDX-License-Identifier: GPL-3.0-or-later
* Copyright © 2016-2020 The TokTok team.
* Copyright © 2015 Tox project.
*/
/**
* Packer and unpacker functions for saving and loading groups.
*/
#ifndef C_TOXCORE_TOXCORE_GROUP_PACK_H
#define C_TOXCORE_TOXCORE_GROUP_PACK_H
#include <stdbool.h>
#include <stdint.h>
#include "attributes.h"
#include "bin_pack.h"
#include "bin_unpack.h"
#include "group_common.h"
/**
* Packs group data from `chat` into `mp` in binary format. Parallel to the
* `gc_load_unpack_group` function.
*/
void gc_save_pack_group(const GC_Chat *_Nonnull chat, Bin_Pack *_Nonnull bp);
/**
* Unpacks binary group data from `obj` into `chat`. Parallel to the `gc_save_pack_group`
* function.
*
* Return true if unpacking is successful.
*/
bool gc_load_unpack_group(GC_Chat *_Nonnull chat, Bin_Unpack *_Nonnull bu);
bool group_privacy_state_from_int(uint8_t value, Group_Privacy_State *_Nonnull out_enum);
bool group_voice_state_from_int(uint8_t value, Group_Voice_State *_Nonnull out_enum);
#endif /* C_TOXCORE_TOXCORE_GROUP_PACK_H */
|