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

14 lines
247 B
C
Raw Normal View History

2013-11-10 03:43:56 +01:00
/*
* Toxic -- Tox Curses Client
*/
#define MAX_NUM_ARGS 4 /* Includes command */
2013-11-10 07:20:52 +01:00
enum {
GLOBAL_COMMAND_MODE,
CHAT_COMMAND_MODE,
GROUPCHAT_COMMAND_MODE,
};
2013-11-10 03:43:56 +01:00
void execute(WINDOW *w, ToxWindow *self, Tox *m, char *cmd, int mode);