staging: usbip: userspace: remove revision $Id$
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / tools / perf / util / ui / progress.h
bloba3820a0beb5beb46adf1fe69cbcee0687ae5cbe8
1 #ifndef _PERF_UI_PROGRESS_H_
2 #define _PERF_UI_PROGRESS_H_ 1
4 struct ui_progress;
6 struct ui_progress *ui_progress__new(const char *title, u64 total);
7 void ui_progress__delete(struct ui_progress *self);
9 void ui_progress__update(struct ui_progress *self, u64 curr);
11 #endif