]> err.no Git - mapper/commitdiff
Move ProgressUpdateInfo struct
authorKaj-Michael Lang <milang@tal.org>
Thu, 12 Jun 2008 14:13:56 +0000 (17:13 +0300)
committerKaj-Michael Lang <milang@tal.org>
Thu, 12 Jun 2008 14:13:56 +0000 (17:13 +0300)
src/map-download.h
src/map-repo.h

index f5634e1898dbcba8fa6b7a9256a95bc44254236a..663997231d166acd6d457896d5f68bc134e43a73 100644 (file)
 
 /** The Source ID of the CURL Multi Download timeout. */
 guint _curl_sid;
-
 CURLM *_curl_multi;
 
+/** Data used during the asynchronous progress update phase of automatic map downloading. */
+typedef struct _ProgressUpdateInfo ProgressUpdateInfo;
+struct _ProgressUpdateInfo {
+       gchar *src_str;
+       gchar *dest_str;
+       RepoData *repo;
+       guint tilex, tiley, zoom;       /* for refresh. */
+       gint retries;           /* if equal to zero, it means we're DELETING maps. */
+       guint priority;
+       FILE *file;
+};
+
 void map_download_init(void);
 void map_initiate_download(guint tilex, guint tiley, guint zoom, gint retries);
 gboolean map_download_stop(void);
index 00eb68a62b09f78a6630e3ed6ef0bd2ef0ab11c1..1e082b69437c2b6dfd6926a67e0becd5e54a8056 100644 (file)
@@ -3,18 +3,6 @@
 
 #include "map-tile-repo.h"
 
-/** Data used during the asynchronous progress update phase of automatic map downloading. */
-typedef struct _ProgressUpdateInfo ProgressUpdateInfo;
-struct _ProgressUpdateInfo {
-       gchar *src_str;
-       gchar *dest_str;
-       RepoData *repo;
-       guint tilex, tiley, zoom;       /* for refresh. */
-       gint retries;           /* if equal to zero, it means we're DELETING maps. */
-       guint priority;
-       FILE *file;
-};
-
 GList *_repo_list;
 RepoData *_curr_repo;