1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-12-08 03:16:36 +01:00
Files
toxic/src/execute.h
Jfreegman 5570b7c98a fix bug
2013-11-12 02:41:55 -05:00

14 lines
258 B
C

/*
* Toxic -- Tox Curses Client
*/
#define MAX_NUM_ARGS 4 /* Includes command */
enum {
GLOBAL_COMMAND_MODE,
CHAT_COMMAND_MODE,
GROUPCHAT_COMMAND_MODE,
};
void execute(WINDOW *w, ToxWindow *prompt, Tox *m, int num, char *cmd, int mode);