]> git.street.me.uk Git - andy/viking.git/blobdiff - src/mapcache.h
Decide the 'feature' type is more useful than seeing the country code.
[andy/viking.git] / src / mapcache.h
index 2e817dd1ec10b7ed8bfca5f43bb514a3fbc6fe8c..28161bd57f7b841872d59b50e37b9f7ca74c016c 100644 (file)
 #ifndef __VIKING_MAPCACHE_H
 #define __VIKING_MAPCACHE_H
 
+#include <glib.h>
+#include <gdk-pixbuf/gdk-pixbuf.h>
+
+G_BEGIN_DECLS
+
 void a_mapcache_init ();
 void a_mapcache_add ( GdkPixbuf *pixbuf, gint x, gint y, gint z, guint8 type, guint zoom, guint8 alpha, gdouble xshrinkfactor, gdouble yshrinkfactor );
 GdkPixbuf *a_mapcache_get ( gint x, gint y, gint z, guint8 type, guint zoom, guint8 alpha, gdouble xshrinkfactor, gdouble yshrinkfactor );
-void a_mapcache_remove_all_shrinkfactors ( guint16 x, guint16 y, guint16 z, guint8 type, guint zoom );
+void a_mapcache_remove_all_shrinkfactors ( gint x, gint y, gint z, guint8 type, guint zoom );
+void a_mapcache_flush ();
 void a_mapcache_uninit ();
 
+G_END_DECLS
+
 #endif