Arnaldo Carvalho de Melo | 34cea7f | 2010-08-08 19:56:47 -0300 | [diff] [blame^] | 1 | #ifndef _PERF_UI_PROGRESS_H_ |
2 | #define _PERF_UI_PROGRESS_H_ 1 | ||||
3 | |||||
4 | struct ui_progress; | ||||
5 | |||||
6 | struct ui_progress *ui_progress__new(const char *title, u64 total); | ||||
7 | void ui_progress__delete(struct ui_progress *self); | ||||
8 | |||||
9 | void ui_progress__update(struct ui_progress *self, u64 curr); | ||||
10 | |||||
11 | #endif |