Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / tools / perf / ui / util.h
blob5e44223b56faa0e2392abb606e26f0acbc1a2ad3
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _PERF_UI_UTIL_H_
3 #define _PERF_UI_UTIL_H_ 1
5 #include <stdarg.h>
7 int ui__getch(int delay_secs);
8 int ui__popup_menu(int argc, char * const argv[]);
9 int ui__help_window(const char *text);
10 int ui__dialog_yesno(const char *msg);
11 int ui__question_window(const char *title, const char *text,
12 const char *exit_msg, int delay_secs);
14 struct perf_error_ops {
15 int (*error)(const char *format, va_list args);
16 int (*warning)(const char *format, va_list args);
19 int perf_error__register(struct perf_error_ops *eops);
20 int perf_error__unregister(struct perf_error_ops *eops);
22 #endif /* _PERF_UI_UTIL_H_ */