2007-04-29 10:38:52 +04:00
|
|
|
#ifndef PROGRESS_H
|
|
|
|
#define PROGRESS_H
|
2007-04-18 22:27:45 +04:00
|
|
|
|
2007-10-30 21:57:32 +03:00
|
|
|
struct progress;
|
2007-04-18 22:27:45 +04:00
|
|
|
|
2007-11-05 06:15:41 +03:00
|
|
|
void display_throughput(struct progress *progress, off_t total);
|
2007-04-18 22:27:45 +04:00
|
|
|
int display_progress(struct progress *progress, unsigned n);
|
2007-10-30 21:57:32 +03:00
|
|
|
struct progress *start_progress(const char *title, unsigned total);
|
|
|
|
struct progress *start_progress_delay(const char *title, unsigned total,
|
|
|
|
unsigned percent_treshold, unsigned delay);
|
|
|
|
void stop_progress(struct progress **progress);
|
2007-11-08 23:45:41 +03:00
|
|
|
void stop_progress_msg(struct progress **progress, const char *msg);
|
2007-04-18 22:27:45 +04:00
|
|
|
|
|
|
|
#endif
|