Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: cfaf025112d3856637ff34a767ef785ef5cf2ca9 authored by Linus Torvalds on 09 June 2012, 01:40:09 UTC
Linux 3.5-rc2
Tip revision: cfaf025
util.h
#ifndef _PERF_UI_UTIL_H_
#define _PERF_UI_UTIL_H_ 1

#include <stdarg.h>

int ui__getch(int delay_secs);
int ui__popup_menu(int argc, char * const argv[]);
int ui__help_window(const char *text);
int ui__dialog_yesno(const char *msg);
int ui__question_window(const char *title, const char *text,
			const char *exit_msg, int delay_secs);
int __ui__warning(const char *title, const char *format, va_list args);

#endif /* _PERF_UI_UTIL_H_ */
back to top