aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.h
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2010-10-21 19:29:14 +0200
committerGravatar Tom Willemsen2010-10-21 19:29:56 +0200
commite963880636c53d1ecd11b62f1be8a3e3c0dd9160 (patch)
treed75368042e589d89f6a12dd9234ab7f170bfed83 /src/data.h
parent10901f7dcb422cf80cfcdce2db7efad5f9197619 (diff)
downloadeye-on-manga-e963880636c53d1ecd11b62f1be8a3e3c0dd9160.tar.gz
eye-on-manga-e963880636c53d1ecd11b62f1be8a3e3c0dd9160.zip
Edit screen
Diffstat (limited to 'src/data.h')
-rw-r--r--src/data.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/data.h b/src/data.h
index 875fe68..c97e228 100644
--- a/src/data.h
+++ b/src/data.h
@@ -8,6 +8,8 @@ struct collection
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);
+GList *data_get_series(void);
+struct collection *data_get_series_by_id(gint collection_id);
+gint *data_get_items_by_collection_id(gint collection_id);
+gboolean data_add_series(gchar *name, gint total_qty);
+gboolean data_add_to_series(gint id, gint count);