blob: e53c3d334903bd015b66e3710b00d8becb27144d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _PERF_UI_UTIL_H_
#define _PERF_UI_UTIL_H_ 1
#include <stdbool.h>
int ui__getch(int delay_secs);
int ui__popup_menu(int argc, char * const argv[]);
int ui__help_window(const char *text);
bool ui__dialog_yesno(const char *msg);
#endif /* _PERF_UI_UTIL_H_ */
|