util.h 609 B

12345678910111213141516171819202122
  1. #ifndef _PERF_UI_UTIL_H_
  2. #define _PERF_UI_UTIL_H_ 1
  3. #include <stdarg.h>
  4. int ui__getch(int delay_secs);
  5. int ui__popup_menu(int argc, char * const argv[]);
  6. int ui__help_window(const char *text);
  7. int ui__dialog_yesno(const char *msg);
  8. int ui__question_window(const char *title, const char *text,
  9. const char *exit_msg, int delay_secs);
  10. struct perf_error_ops {
  11. int (*error)(const char *format, va_list args);
  12. int (*warning)(const char *format, va_list args);
  13. };
  14. int perf_error__register(struct perf_error_ops *eops);
  15. int perf_error__unregister(struct perf_error_ops *eops);
  16. #endif /* _PERF_UI_UTIL_H_ */