diff options
| author | Michiel Van Der Kolk <not.valid@email.address> | 2005-04-26 21:37:44 +0000 |
|---|---|---|
| committer | Michiel Van Der Kolk <not.valid@email.address> | 2005-04-26 21:37:44 +0000 |
| commit | 929e7837cd8433d2e265d982e31b6ddd765cf5d1 (patch) | |
| tree | b7cf326db1f6f019c96263e8a312793786c232f3 /apps/dbtree.h | |
| parent | 04ed408de9ea576a3b22ee44bac9483ca27124c6 (diff) | |
| download | rockbox-929e7837cd8433d2e265d982e31b6ddd765cf5d1.zip rockbox-929e7837cd8433d2e265d982e31b6ddd765cf5d1.tar.gz rockbox-929e7837cd8433d2e265d982e31b6ddd765cf5d1.tar.bz2 rockbox-929e7837cd8433d2e265d982e31b6ddd765cf5d1.tar.xz | |
Restructurizing database code, seperating database code from dbtree code,
wrote the first basic functions to manipulate fileentries.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6359 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/dbtree.h')
| -rw-r--r-- | apps/dbtree.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dbtree.h b/apps/dbtree.h index 94453c5..1e26f5d 100644 --- a/apps/dbtree.h +++ b/apps/dbtree.h @@ -20,13 +20,12 @@ #define DBTREE_H #include "tree.h" +#include "database.h" enum table { invalid, root, allsongs, allalbums, allartists, albums4artist, songs4album, songs4artist, search, searchartists, searchalbums, searchsongs }; -int db_init(void); -void db_shutdown(void); int db_enter(struct tree_context* c); void db_exit(struct tree_context* c); int db_load(struct tree_context* c); @@ -37,5 +36,6 @@ int db_get_icon(struct tree_context* c); #endif + #endif |