util.h 236 B

1234567891011
  1. #ifndef _PERF_UI_UTIL_H_
  2. #define _PERF_UI_UTIL_H_ 1
  3. #include <stdbool.h>
  4. int ui__popup_menu(int argc, char * const argv[]);
  5. int ui__help_window(const char *text);
  6. bool ui__dialog_yesno(const char *msg);
  7. #endif /* _PERF_UI_UTIL_H_ */