aboutsummaryrefslogtreecommitdiffstats
blob: a3820a0beb5beb46adf1fe69cbcee0687ae5cbe8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _PERF_UI_PROGRESS_H_
#define _PERF_UI_PROGRESS_H_ 1

struct ui_progress;

struct ui_progress *ui_progress__new(const char *title, u64 total);
void ui_progress__delete(struct ui_progress *self);

void ui_progress__update(struct ui_progress *self, u64 curr);

#endif