diff options
| author | 2010-10-21 19:29:14 +0200 | |
|---|---|---|
| committer | 2010-10-21 19:29:56 +0200 | |
| commit | e963880636c53d1ecd11b62f1be8a3e3c0dd9160 (patch) | |
| tree | d75368042e589d89f6a12dd9234ab7f170bfed83 /src/data.h | |
| parent | 10901f7dcb422cf80cfcdce2db7efad5f9197619 (diff) | |
| download | eye-on-manga-e963880636c53d1ecd11b62f1be8a3e3c0dd9160.tar.gz eye-on-manga-e963880636c53d1ecd11b62f1be8a3e3c0dd9160.zip | |
Edit screen
Diffstat (limited to 'src/data.h')
| -rw-r--r-- | src/data.h | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -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); |