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

17 lines
314 B
C
Raw Normal View History

2013-09-15 22:38:38 +02:00
/*
* 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;
2013-09-17 12:03:08 +02:00
int init_groupchat_win(ToxWindow *prompt, Tox *m, int groupnum);
2013-11-30 00:52:21 +01:00
ToxWindow new_group_chat(Tox *m, int groupnum);