2010-08-09 00:56:47 +02:00
|
|
|
#ifndef _PERF_UI_PROGRESS_H_
|
|
|
|
#define _PERF_UI_PROGRESS_H_ 1
|
|
|
|
|
2011-10-25 17:29:11 +02:00
|
|
|
#include <../types.h>
|
2010-08-09 00:56:47 +02:00
|
|
|
|
2012-11-13 14:30:32 +01:00
|
|
|
struct ui_progress {
|
|
|
|
void (*update)(u64, u64, const char *);
|
2012-11-13 14:30:34 +01:00
|
|
|
void (*finish)(void);
|
2012-11-13 14:30:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct ui_progress *progress_fns;
|
|
|
|
|
|
|
|
void ui_progress__init(void);
|
|
|
|
|
2011-10-25 17:29:11 +02:00
|
|
|
void ui_progress__update(u64 curr, u64 total, const char *title);
|
2012-11-13 14:30:34 +01:00
|
|
|
void ui_progress__finish(void);
|
2010-08-09 00:56:47 +02:00
|
|
|
|
|
|
|
#endif
|