* "Set" the mark, which translates the current GPS position into on-screen
* units in preparation for drawing the mark with map_draw_mark().
*/
-static void
-map_set_mark()
+void
+map_set_mark(void)
{
_mark_x1 = unit2x(_pos.unitx);
_mark_y1 = unit2y(_pos.unity);
* draw area of the new mark.
*/
void
-map_move_mark()
+map_move_mark(void)
{
/* Just queue the old and new draw areas. */
gtk_widget_queue_draw_area(_map_widget,
gboolean map_key_zoom_timeout();
-void map_set_autozoom(gboolean az);
int map_zoom(gint zdir);
-void map_move_mark();
+void map_set_autozoom(gboolean az);
void map_render_path(Path * path, GdkGC ** gc);
void map_center_unit(guint new_center_unitx, guint new_center_unity);
void map_pan(gint delta_unitx, gint delta_unity);
-void map_set_mark();
+void map_move_mark(void);
+void map_set_mark(void);
gboolean map_cb_configure(GtkWidget * widget, GdkEventConfigure * event);
gboolean map_cb_expose(GtkWidget * widget, GdkEventExpose * event);