diff options
author | Nathan Jones <nathanj@insightbb.com> | 2007-11-09 19:54:19 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-11-11 09:46:13 -0600 |
commit | 8ec27835f40e3df1ce409bc3d913587c474a30c3 (patch) | |
tree | e7d1c943ab3c37662079ef5e974c61dcd5807139 /lib/libalpm/alpm.h | |
parent | b206af78e0e6d2ff3324f3b2dc333d1b4e54f5b9 (diff) | |
download | pacman-8ec27835f40e3df1ce409bc3d913587c474a30c3.tar.xz |
Implement TotalDownload option.
Setting this option will change the download progress to show the amount
downloaded, download rate, ETA, and download percent of the entire
download list rather than per each individual file.
The progress bar is still based on the completion of the current file
regardless if the TotalDownload option is set.
This closes FS#7205.
Signed-off-by: Nathan Jones <nathanj@insightbb.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/alpm.h')
-rw-r--r-- | lib/libalpm/alpm.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h index f8558e1b..cdece2d3 100644 --- a/lib/libalpm/alpm.h +++ b/lib/libalpm/alpm.h @@ -81,7 +81,8 @@ int alpm_logaction(char *fmt, ...); * Downloading */ -typedef void (*alpm_cb_download)(const char *filename, int xfered, int total); +typedef void (*alpm_cb_download)(const char *filename, int file_xfered, + int file_total, int list_xfered, int list_total); /* * Options |