summaryrefslogtreecommitdiff
path: root/apps/credits.h
diff options
context:
space:
mode:
authorRobert Hak <adiamas@rockbox.org>2002-05-18 11:39:32 +0000
committerRobert Hak <adiamas@rockbox.org>2002-05-18 11:39:32 +0000
commitf43f7e74683399788574b646a21aa5099fc446f6 (patch)
tree36497da9d0ab3f89ccee5abcd466100f83a1f104 /apps/credits.h
parentcace8a053a80d20764e31dfd44cb0bd87cd1ce21 (diff)
downloadrockbox-f43f7e74683399788574b646a21aa5099fc446f6.tar.gz
rockbox-f43f7e74683399788574b646a21aa5099fc446f6.zip
list the credits from the menu on rockbox
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@630 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/credits.h')
-rw-r--r--apps/credits.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/apps/credits.h b/apps/credits.h
new file mode 100644
index 0000000000..d109e55dde
--- /dev/null
+++ b/apps/credits.h
@@ -0,0 +1,35 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 by Robert Hak <rhak at ramapo.edu>
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
20#ifndef __ROCKBOX_CREDITS_H__
21#define __ROCKBOX_CREDITS_H__
22
23#define CREDIT_COUNT 21
24
25struct credit {
26 const char *name;
27 const char *desc;
28};
29
30/* Show who worked on the project */
31void show_credits(void);
32
33#endif
34
35