From 84c7d8802106266c94d0a30827dff418a2fcac6d Mon Sep 17 00:00:00 2001 From: Björn Stenberg Date: Tue, 18 Jan 2005 22:45:00 +0000 Subject: Added support for very large tables in ID3 database. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5595 a1c6a512-1295-4272-9138-f99709370657 --- apps/dbtree.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/dbtree.h') diff --git a/apps/dbtree.h b/apps/dbtree.h index 414aa6f19f..5fa09b0eaf 100644 --- a/apps/dbtree.h +++ b/apps/dbtree.h @@ -21,13 +21,13 @@ #include "tree.h" -enum table { invalid, allsongs, allalbums, allartists, albums, songs }; +enum table { invalid, allsongs, allalbums, allartists, + albums4artist, songs4album }; int db_init(void); void db_enter(struct tree_context* c); void db_exit(struct tree_context* c); -int db_load(struct tree_context* c, - bool* dir_buffer_full); +int db_load(struct tree_context* c); #ifdef HAVE_LCD_BITMAP const char* db_get_icon(struct tree_context* c); #else -- cgit v1.2.3