about summary refs log tree commit diff stats
path: root/src/tools/http_download.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/http_download.h')
-rw-r--r--src/tools/http_download.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tools/http_download.h b/src/tools/http_download.h
index ba8b5023..797e1603 100644
--- a/src/tools/http_download.h
+++ b/src/tools/http_download.h
@@ -54,6 +54,7 @@ typedef struct http_download_t
     ProfWin* window;
     pthread_t worker;
     int cancel;
+    int close;
 } HTTPDownload;
 
 void* http_file_get(void* userdata);
@@ -62,5 +63,7 @@ void http_download_cancel_processes(ProfWin* window);
 void http_download_add_download(HTTPDownload* download);
 
 char* http_basename_from_url(const char* url);
+void http_print_transfer_update(ProfWin* window, char* url,
+                                const char* fmt, ...);
 
 #endif