Arnaldo Carvalho de Melo | 5575536 | 2010-08-08 19:48:31 -0300 | [diff] [blame] | 1 | #ifndef _PERF_UI_HELPLINE_H_ |
| 2 | #define _PERF_UI_HELPLINE_H_ 1 |
| 3 | |
Arnaldo Carvalho de Melo | 3af6e33 | 2011-10-13 08:52:46 -0300 | [diff] [blame] | 4 | #include <stdio.h> |
Mike Galbraith | 7bc7298 | 2011-10-17 09:14:58 -0200 | [diff] [blame] | 5 | #include <stdarg.h> |
Arnaldo Carvalho de Melo | 3af6e33 | 2011-10-13 08:52:46 -0300 | [diff] [blame] | 6 | |
Namhyung Kim | 0985a94 | 2012-08-16 17:14:54 +0900 | [diff] [blame] | 7 | #include "../util/cache.h" |
| 8 | |
Namhyung Kim | e6e9046 | 2012-08-16 17:14:50 +0900 | [diff] [blame] | 9 | struct ui_helpline { |
| 10 | void (*pop)(void); |
| 11 | void (*push)(const char *msg); |
Namhyung Kim | b56e533 | 2012-11-15 01:47:41 +0900 | [diff] [blame] | 12 | int (*show)(const char *fmt, va_list ap); |
Namhyung Kim | e6e9046 | 2012-08-16 17:14:50 +0900 | [diff] [blame] | 13 | }; |
| 14 | |
| 15 | extern struct ui_helpline *helpline_fns; |
| 16 | |
Arnaldo Carvalho de Melo | 1e6dd07 | 2010-08-10 15:58:50 -0300 | [diff] [blame] | 17 | void ui_helpline__init(void); |
Namhyung Kim | e6e9046 | 2012-08-16 17:14:50 +0900 | [diff] [blame] | 18 | |
Arnaldo Carvalho de Melo | 5575536 | 2010-08-08 19:48:31 -0300 | [diff] [blame] | 19 | void ui_helpline__pop(void); |
| 20 | void ui_helpline__push(const char *msg); |
Arnaldo Carvalho de Melo | 59e8fe3 | 2010-08-10 15:44:20 -0300 | [diff] [blame] | 21 | void ui_helpline__vpush(const char *fmt, va_list ap); |
Arnaldo Carvalho de Melo | 5575536 | 2010-08-08 19:48:31 -0300 | [diff] [blame] | 22 | void ui_helpline__fpush(const char *fmt, ...); |
| 23 | void ui_helpline__puts(const char *msg); |
Namhyung Kim | b56e533 | 2012-11-15 01:47:41 +0900 | [diff] [blame] | 24 | int ui_helpline__vshow(const char *fmt, va_list ap); |
Arnaldo Carvalho de Melo | 5575536 | 2010-08-08 19:48:31 -0300 | [diff] [blame] | 25 | |
Namhyung Kim | e6e9046 | 2012-08-16 17:14:50 +0900 | [diff] [blame] | 26 | extern char ui_helpline__current[512]; |
Namhyung Kim | 1254b51 | 2012-09-28 18:32:02 +0900 | [diff] [blame] | 27 | extern char ui_helpline__last_msg[]; |
Namhyung Kim | 0985a94 | 2012-08-16 17:14:54 +0900 | [diff] [blame] | 28 | |
Arnaldo Carvalho de Melo | 5575536 | 2010-08-08 19:48:31 -0300 | [diff] [blame] | 29 | #endif /* _PERF_UI_HELPLINE_H_ */ |