diff options
Diffstat (limited to 'lib/libalpm/server.h')
-rw-r--r-- | lib/libalpm/server.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/libalpm/server.h b/lib/libalpm/server.h index 85d390d6..f3dad39b 100644 --- a/lib/libalpm/server.h +++ b/lib/libalpm/server.h @@ -22,6 +22,7 @@ #define _ALPM_SERVER_H #include "list.h" +#include <ftplib.h> #define FREESERVER(p) \ do { \ @@ -48,6 +49,16 @@ int _alpm_downloadfiles_forreal(pmlist_t *servers, const char *localpath, char *_alpm_fetch_pkgurl(char *target); +extern FtpCallback pm_dlcb; + +/* progress bar */ +extern char *pm_dlfnm; +extern int *pm_dloffset; +extern struct timeval *pm_dlt0, *pm_dlt; +extern float *pm_dlrate; +extern int *pm_dlxfered1; +extern unsigned char *pm_dleta_h, *pm_dleta_m, *pm_dleta_s; + #endif /* _ALPM_SERVER_H */ /* vim: set ts=2 sw=2 noet: */ |