aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.h
blob: 875fe68fac8ae9950145470ade9161408ec0e198 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <gtk/gtk.h>

struct collection
{
  int   id;
  int   current_qty;
  int   total_qty;
  char *name;
};

GList    *data_get_series(void);
gboolean  data_add_series(gchar *name, gint total_qty);
gboolean  data_add_to_series(gint id, gint count);