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

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

6 7 8 9 10 11 12 13
struct ui_progress {
	void (*update)(u64, u64, const char *);
};

extern struct ui_progress *progress_fns;

void ui_progress__init(void);

14
void ui_progress__update(u64 curr, u64 total, const char *title);
15 16

#endif