diff options
Diffstat (limited to 'readline.h')
-rw-r--r-- | readline.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/readline.h b/readline.h new file mode 100644 index 0000000000..c5c10d6e3f --- /dev/null +++ b/readline.h @@ -0,0 +1,20 @@ +#ifndef READLINE_H +#define READLINE_H + +#include "qemu-common.h" + +typedef void ReadLineFunc(Monitor *mon, const char *str, void *opaque); + +void readline_add_completion(const char *str); +void readline_set_completion_index(int index); +void readline_find_completion(const char *cmdline); + +const char *readline_get_history(unsigned int index); + +void readline_handle_byte(int ch); + +void readline_start(const char *prompt, int is_password, + ReadLineFunc *readline_func, void *opaque); +void readline_show_prompt(void); + +#endif /* !READLINE_H */ |