1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-06-29 13:17:46 +02:00
toxic/src/groupchat.h

16 lines
266 B
C

/*
* Toxic -- Tox Curses Client
*/
#define SIDEBAR_WIDTH 16
typedef struct {
int chatwin;
bool active;
int num_peers;
uint8_t *peer_names;
uint8_t *oldpeer_names;
} GroupChat;
int init_groupchat_win(ToxWindow *prompt, Tox *m, int groupnum);