2010-08-09 00:48:31 +02:00
|
|
|
#ifndef _PERF_UI_HELPLINE_H_
|
|
|
|
#define _PERF_UI_HELPLINE_H_ 1
|
|
|
|
|
2010-08-10 20:58:50 +02:00
|
|
|
void ui_helpline__init(void);
|
2010-08-09 00:48:31 +02:00
|
|
|
void ui_helpline__pop(void);
|
|
|
|
void ui_helpline__push(const char *msg);
|
2010-08-10 20:44:20 +02:00
|
|
|
void ui_helpline__vpush(const char *fmt, va_list ap);
|
2010-08-09 00:48:31 +02:00
|
|
|
void ui_helpline__fpush(const char *fmt, ...);
|
|
|
|
void ui_helpline__puts(const char *msg);
|
|
|
|
|
|
|
|
#endif /* _PERF_UI_HELPLINE_H_ */
|