You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#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_ */
|
|
|