]> err.no Git - mapper/blob - src/map-download.h
Remove non-public variables
[mapper] / src / map-download.h
1 #include "config.h"
2
3 #ifndef _MAPPER_MAP_DOWNLOAD_H
4 #define _MAPPER_MAP_DOWNLOAD_H
5
6 #include <curl/multi.h>
7 #include <glib.h>
8 #include "mapper-types.h"
9
10 CURLM *_curl_multi;
11 GQueue *_curl_easy_queue;
12 GTree *_pui_tree;
13 GTree *_downloading_tree;
14 GHashTable *_pui_by_easy;
15
16 void map_download_init(void);
17 void map_initiate_download(guint tilex, guint tiley, guint zoom, gint retries);
18 gboolean map_download_timeout();
19 gboolean map_download_idle_refresh(ProgressUpdateInfo * pui);
20
21 #endif