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

14 lines
258 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-12 08:41:55 +01:00
void execute(WINDOW *w, ToxWindow *prompt, Tox *m, int num, char *cmd, int mode);