]> git.street.me.uk Git - andy/viking.git/blobdiff - src/curl_download.h
Fix <GTK 2.24 combo box usage.
[andy/viking.git] / src / curl_download.h
index 8ad400384806a154038056d0ab14a09e94d89039..86022ed4e274dc1f10a4bf333679d155c952e91c 100644 (file)
 #include "download.h"
 
 void curl_download_init ();
-int curl_download_get_url ( const char *hostname, const char *uri, FILE *f, DownloadOptions *options );
-int curl_download_uri ( const char *uri, FILE *f, DownloadOptions *options );
+void curl_download_uninit ();
+int curl_download_get_url ( const char *hostname, const char *uri, FILE *f, DownloadMapOptions *options, gboolean ftp, DownloadFileOptions *file_options, void *handle );
+int curl_download_uri ( const char *uri, FILE *f, DownloadMapOptions *options, DownloadFileOptions *file_options, void *handle );
+void * curl_download_handle_init ();
+void curl_download_handle_cleanup ( void * handle );
 
 #endif