1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-07-01 00:56:46 +02:00

Rename: groupchats -> conferences

This is in line with the toxcore API naming scheme and is in preparation
for the merge with the new groupchat implementation
This commit is contained in:
jfreegman
2020-11-08 10:08:24 -05:00
parent 811fbfbb1e
commit 4188b392cc
28 changed files with 294 additions and 293 deletions

View File

@ -35,7 +35,7 @@ struct LastOnline {
char hour_min_str[TIME_STR_SIZE]; /* holds 12/24-hour time string e.g. "10:43 PM" */
};
struct GroupChatInvite {
struct ConferenceInvite {
char *key;
uint16_t length;
uint8_t type;
@ -57,7 +57,7 @@ typedef struct {
Tox_User_Status status;
struct LastOnline last_online;
struct GroupChatInvite group_invite;
struct ConferenceInvite conference_invite;
struct FileTransfer file_receiver[MAX_FILES];
struct FileTransfer file_sender[MAX_FILES];