mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
0aad4d6094
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
13 lines
313 B
C
13 lines
313 B
C
#ifndef DIVELIST_H
|
|
#define DIVELIST_H
|
|
|
|
struct dive;
|
|
|
|
extern void dive_list_update_dives(void);
|
|
extern void update_dive_list_col_visibility(void);
|
|
extern void update_dive_list_units(void);
|
|
extern void flush_divelist(struct dive *);
|
|
|
|
extern void mark_divelist_changed(int);
|
|
extern int unsaved_changes(void);
|
|
#endif
|