progress.h 352 字节
Newer Older
1 2 3
#ifndef _PERF_UI_PROGRESS_H_
#define _PERF_UI_PROGRESS_H_ 1

4
#include <../types.h>
5

6 7
struct ui_progress {
	void (*update)(u64, u64, const char *);
N
Namhyung Kim 已提交
8
	void (*finish)(void);
9 10 11 12 13 14
};

extern struct ui_progress *progress_fns;

void ui_progress__init(void);

15
void ui_progress__update(u64 curr, u64 total, const char *title);
N
Namhyung Kim 已提交
16
void ui_progress__finish(void);
17 18

#endif