2022-10-02 21:42:04 +05:30
|
|
|
#include<gtk/gtk.h>
|
|
|
|
#include<osm-gps-map.h>
|
|
|
|
typedef struct{
|
|
|
|
OsmGpsMap *util_map;
|
|
|
|
GdkPixbuf *g_red_image;
|
|
|
|
GdkPixbuf *g_green_image;
|
|
|
|
OsmGpsMapImage *g_last_image;
|
2022-10-19 16:30:42 +05:30
|
|
|
int current_selection;
|
2022-10-02 21:42:04 +05:30
|
|
|
} myParameters;
|
|
|
|
|
2022-10-28 18:18:01 +05:30
|
|
|
struct vis_data{
|
|
|
|
int id;
|
|
|
|
float lat;
|
|
|
|
float lon;
|
|
|
|
GdkPixbuf *last_image;
|
|
|
|
GTimeVal last_update_time;
|
|
|
|
struct vis_data *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct vis_data *head;
|
2022-10-19 16:30:42 +05:30
|
|
|
|
2022-10-02 21:42:04 +05:30
|
|
|
gboolean update_images(gpointer* pars);
|