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

struct collection
{
  const gchar *name;
        gint   current_qty;
        gint   total_qty;
};

GList    *data_get_series(void);
gboolean  data_add_series(gchar *name, int total_qty);