util.h 370 字节
Newer Older
1 2 3 4 5
#ifndef _PERF_UI_UTIL_H_
#define _PERF_UI_UTIL_H_ 1

#include <stdbool.h>

6
int ui__getch(int delay_secs);
7 8 9
int ui__popup_menu(int argc, char * const argv[]);
int ui__help_window(const char *text);
bool ui__dialog_yesno(const char *msg);
10 11
int ui__question_window(const char *title, const char *text,
			const char *exit_msg, int delay_secs);
12 13

#endif /* _PERF_UI_UTIL_H_ */