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

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

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

11
extern struct ui_progress_ops *ui_progress__ops;
12

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

#endif