Green Sky
a5093c4aa3
3e05824b80 refactor: Rename `out` parameters to `out_$something`. 0199c0f17f cleanup: apply the same scheme to types aebbfabe26 cleanup: event length naming inconsistencies 2457125aa8 cleanup: align group send err enum order git-subtree-dir: external/toxcore/c-toxcore git-subtree-split: 3e05824b80eb9bee33e8254cba0780d84c522182
42 lines
1.0 KiB
C
42 lines
1.0 KiB
C
/* 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 "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.
|
|
*/
|
|
non_null()
|
|
void gc_save_pack_group(const GC_Chat *chat, Bin_Pack *bp);
|
|
|
|
/**
|
|
* Unpacks binary group data from `obj` into `chat`. Parallel to the `gc_save_pack_group`
|
|
* function.
|
|
*
|
|
* Return true if unpacking is successful.
|
|
*/
|
|
non_null()
|
|
bool gc_load_unpack_group(GC_Chat *chat, Bin_Unpack *bu);
|
|
|
|
non_null()
|
|
bool group_privacy_state_from_int(uint8_t value, Group_Privacy_State *out_enum);
|
|
non_null()
|
|
bool group_voice_state_from_int(uint8_t value, Group_Voice_State *out_enum);
|
|
|
|
#endif /* C_TOXCORE_TOXCORE_GROUP_PACK_H */
|