2007-04-29 08:38:52 +02:00
|
|
|
#ifndef PROGRESS_H
|
|
|
|
#define PROGRESS_H
|
2007-04-18 20:27:45 +02:00
|
|
|
|
2007-10-30 19:57:32 +01:00
|
|
|
struct progress;
|
2007-04-18 20:27:45 +02:00
|
|
|
|
2017-11-13 21:15:58 +01:00
|
|
|
void display_throughput(struct progress *progress, uint64_t total);
|
|
|
|
int display_progress(struct progress *progress, uint64_t n);
|
|
|
|
struct progress *start_progress(const char *title, uint64_t total);
|
|
|
|
struct progress *start_delayed_progress(const char *title, uint64_t total);
|
2007-10-30 19:57:32 +01:00
|
|
|
void stop_progress(struct progress **progress);
|
2007-11-08 21:45:41 +01:00
|
|
|
void stop_progress_msg(struct progress **progress, const char *msg);
|
2007-04-18 20:27:45 +02:00
|
|
|
|
|
|
|
#endif
|