Linux Audio

Check our new training course

Loading...
v4.6
 
 1#ifndef _PERF_UI_UTIL_H_
 2#define _PERF_UI_UTIL_H_ 1
 3
 4#include <stdarg.h>
 5
 6int ui__getch(int delay_secs);
 7int ui__popup_menu(int argc, char * const argv[]);
 8int ui__help_window(const char *text);
 9int ui__dialog_yesno(const char *msg);
10int ui__question_window(const char *title, const char *text,
11			const char *exit_msg, int delay_secs);
12
13struct perf_error_ops {
14	int (*error)(const char *format, va_list args);
15	int (*warning)(const char *format, va_list args);
16};
17
18int perf_error__register(struct perf_error_ops *eops);
19int perf_error__unregister(struct perf_error_ops *eops);
20
21#endif /* _PERF_UI_UTIL_H_ */
v4.17
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef _PERF_UI_UTIL_H_
 3#define _PERF_UI_UTIL_H_ 1
 4
 5#include <stdarg.h>
 6
 7int ui__getch(int delay_secs);
 8int ui__popup_menu(int argc, char * const argv[]);
 9int ui__help_window(const char *text);
10int ui__dialog_yesno(const char *msg);
11int ui__question_window(const char *title, const char *text,
12			const char *exit_msg, int delay_secs);
13
14struct perf_error_ops {
15	int (*error)(const char *format, va_list args);
16	int (*warning)(const char *format, va_list args);
17};
18
19int perf_error__register(struct perf_error_ops *eops);
20int perf_error__unregister(struct perf_error_ops *eops);
21
22#endif /* _PERF_UI_UTIL_H_ */