]> git.street.me.uk Git - andy/viking.git/blobdiff - src/curl_download.h
Allow zoom to 1/32.
[andy/viking.git] / src / curl_download.h
index 8ad400384806a154038056d0ab14a09e94d89039..ef2cd62a2a84930d75e4a9519a2bb7095fbd37b4 100644 (file)
 
 #include "download.h"
 
+G_BEGIN_DECLS
+
 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 );
+
+G_END_DECLS
 
 #endif