utils: Use the host toolchain to build.
[syslinux.git] / com32 / include / cli.h
blobeee4576f2ef09008cfc5567b9d1670f24ad95463
1 #ifndef CLI_H
2 #define CLI_H
4 #define MAX_CMD_HISTORY 64
5 #define COMMAND_DELIM " \t\n" // Whitespace delimiters
6 #define MAX_COMMAND_ARGS 40
8 struct cli_command {
9 struct list_head list;
10 char *command;
13 extern void clear_screen(void);
14 extern int mygetkey(clock_t timeout);
15 extern const char *edit_cmdline(const char *input, int top /*, int width */ ,
16 int (*pDraw_Menu) (int, int, int),
17 void (*show_fkey) (int), bool *);
19 extern struct menu *root_menu, *start_menu, *hide_menu, *menu_list, *default_menu;
20 #endif