diff options
Diffstat (limited to 'tools/perf/util/hist.h')
-rw-r--r-- | tools/perf/util/hist.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/perf/util/hist.h b/tools/perf/util/hist.h index 6f17dcd..2d5203f 100644 --- a/tools/perf/util/hist.h +++ b/tools/perf/util/hist.h @@ -102,8 +102,18 @@ static inline int hists__browse(struct hists *self __used, { return 0; } +static inline int hist_entry__tui_annotate(struct hist_entry *self __used) +{ + return 0; +} +#define KEY_LEFT -1 +#define KEY_RIGHT -2 #else +#include <newt.h> int hists__browse(struct hists *self, const char *helpline, const char *input_name); +int hist_entry__tui_annotate(struct hist_entry *self); +#define KEY_LEFT NEWT_KEY_LEFT +#define KEY_RIGHT NEWT_KEY_RIGHT #endif #endif /* __PERF_HIST_H */ |