1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-10 06:57:56 +02:00
toxic/src/groupchat.h
2013-11-24 17:12:24 -05:00

19 lines
390 B
C

/*
* Toxic -- Tox Curses Client
*/
#define SIDEBAR_WIDTH 16
#define CHATBOX_HEIGHT 4
/* Limits # of peers in sidepanel (make this go away) */
#define MAX_GROUP_PEERS 100
typedef struct {
int chatwin;
bool active;
int num_peers;
uint8_t peer_names[MAX_GROUP_PEERS][TOX_MAX_NAME_LENGTH];
} GroupChat;
int init_groupchat_win(ToxWindow *prompt, Tox *m, int groupnum);