summaryrefslogtreecommitdiff
path: root/apps/player/icons.h
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-09-03 07:39:55 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-09-03 07:39:55 +0000
commit0b637600453abda08f0e17e16a30bb2f15ae725f (patch)
treed9bef60ea42ff8746e9720ce29b8b600c6c2cc08 /apps/player/icons.h
parentd1bcc58290e75c03fa0d37b04522b5957531d5dc (diff)
downloadrockbox-0b637600453abda08f0e17e16a30bb2f15ae725f.tar.gz
rockbox-0b637600453abda08f0e17e16a30bb2f15ae725f.zip
New player directory with icons
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2142 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/player/icons.h')
-rw-r--r--apps/player/icons.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/apps/player/icons.h b/apps/player/icons.h
new file mode 100644
index 0000000000..87608961b8
--- /dev/null
+++ b/apps/player/icons.h
@@ -0,0 +1,34 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 Justin Heiner
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#include <lcd.h>
20
21/*
22 * Icons of size 5x7 pixels for the Player LCD
23 */
24
25#ifdef HAVE_LCD_CHARCELLS
26
27enum icons_6x8 {
28 Unknown, File, Folder, Playlist, Wps, Mod_Ajz,
29 LastTreeIcon
30};
31
32extern char tree_icons_5x7[LastTreeIcon][8];
33
34#endif