diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-05-29 10:55:49 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-05-29 10:55:49 +0000 |
| commit | 220f69c24ec6477aeee403d3cbecc9d1569db28a (patch) | |
| tree | ba07b87769c413f45deaf589cf37974bb8a734d6 /apps/version.h | |
| parent | f779e26c89f3f419af82dd18561fc5f00a5da491 (diff) | |
| download | rockbox-220f69c24ec6477aeee403d3cbecc9d1569db28a.zip rockbox-220f69c24ec6477aeee403d3cbecc9d1569db28a.tar.gz rockbox-220f69c24ec6477aeee403d3cbecc9d1569db28a.tar.bz2 rockbox-220f69c24ec6477aeee403d3cbecc9d1569db28a.tar.xz | |
Added version display to menu
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@787 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/version.h')
| -rw-r--r-- | apps/version.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/apps/version.h b/apps/version.h index 6837752..b60d1ca 100644 --- a/apps/version.h +++ b/apps/version.h @@ -1 +1,25 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2002 Björn Stenberg + * + * All files in this archive are subject to the GNU General Public License. + * See the file COPYING in the source tree root for full license agreement. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ +#ifndef _VERSION_H_ +#define _VERSION_H_ + #define APPSVERSION "0.1" +extern char appsversion[]; + +#endif |