subsurface/divelist.h
Linus Torvalds 9cf8d98711 Make 'struct DiveList' entirely internal to divelist.c
Passing it around is just annoying, and we only ever have one.  Let's
not burden all the users with the silly thing.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-09-20 10:06:24 -07:00

13 lines
252 B
C

#ifndef DIVELIST_H
#define DIVELIST_H
#include <gtk/gtk.h>
struct dive;
extern GtkWidget *dive_list_create(void);
extern void dive_list_update_dives(void);
extern void update_dive_list_units(void);
extern void flush_divelist(struct dive *);
#endif