Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
25 lines
801 B
C
25 lines
801 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#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 *keyp);
|
|
int ui__help_window(const char *text);
|
|
int ui__dialog_yesno(const char *msg);
|
|
void __ui__info_window(const char *title, const char *text, const char *exit_msg);
|
|
void ui__info_window(const char *title, const char *text);
|
|
int ui__question_window(const char *title, const char *text,
|
|
const char *exit_msg, int delay_secs);
|
|
|
|
struct perf_error_ops {
|
|
int (*error)(const char *format, va_list args);
|
|
int (*warning)(const char *format, va_list args);
|
|
};
|
|
|
|
int perf_error__register(struct perf_error_ops *eops);
|
|
int perf_error__unregister(struct perf_error_ops *eops);
|
|
|
|
#endif /* _PERF_UI_UTIL_H_ */
|