1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-06 03:27:56 +02:00
toxic/src/execute.h

14 lines
249 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
2013-11-10 19:23:47 +01:00
void execute(WINDOW *w, ToxWindow *prompt, Tox *m, char *cmd, int mode);