summaryrefslogtreecommitdiff
path: root/apps/dbtree.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/dbtree.h')
-rw-r--r--apps/dbtree.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/apps/dbtree.h b/apps/dbtree.h
deleted file mode 100644
index 50d34b2a82..0000000000
--- a/apps/dbtree.h
+++ /dev/null
@@ -1,40 +0,0 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2005 by Björn Stenberg
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19#ifndef DBTREE_H
20#define DBTREE_H
21
22#include "tree.h"
23#include "database.h"
24
25enum table { invalid, root, allsongs, allalbums, allartists,
26 albums4artist, songs4album, songs4artist,
27 search, searchartists, searchalbums, searchsongs };
28
29int db_enter(struct tree_context* c);
30void db_exit(struct tree_context* c);
31int db_load(struct tree_context* c);
32#ifdef HAVE_LCD_BITMAP
33const char* db_get_icon(struct tree_context* c);
34#else
35int db_get_icon(struct tree_context* c);
36#endif
37int db_get_filename(struct tree_context* c, char *buf, int buflen);
38
39#endif
40