X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=divelist.h;h=2d1fd509241193f12b140c431a4eb513b9ca5c89;hb=2db85596e52ea0852bfe67f2fb67df8440b43d1b;hp=c8bc5ff722c17f2a352f1b646d0278bbbad05a94;hpb=de721d98106569ccf74d4bcc35619e281df00e5e;p=ext%2Fsubsurface.git diff --git a/divelist.h b/divelist.h index c8bc5ff..2d1fd50 100644 --- a/divelist.h +++ b/divelist.h @@ -7,13 +7,16 @@ struct DiveList { GtkWidget *tree_view; GtkWidget *container_widget; GtkListStore *model; - GtkTreeViewColumn *date, *depth, *duration; - GtkTreeViewColumn *temperature, *nitrox, *sac; + GtkTreeViewColumn *date, *depth, *duration, *location; + GtkTreeViewColumn *temperature, *cylinder, *nitrox, *sac; }; +struct dive; + extern struct DiveList dive_list; extern struct DiveList dive_list_create(void); extern void dive_list_update_dives(struct DiveList); extern void update_dive_list_units(struct DiveList *); +extern void flush_divelist(struct DiveList *, struct dive *); #endif