summaryrefslogtreecommitdiff
path: root/apps/language.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2008-02-17 23:24:28 +0000
committerDaniel Stenberg <daniel@haxx.se>2008-02-17 23:24:28 +0000
commit9425cf65489776cfaf2d4c5472d4693dcd158aa6 (patch)
treec38f22bde0df181061b054cdfb25b7fef5a29fa5 /apps/language.h
parente2f5f21e5bf5b8e43f3eb130d8a282a5a8c62ac6 (diff)
downloadrockbox-9425cf65489776cfaf2d4c5472d4693dcd158aa6.tar.gz
rockbox-9425cf65489776cfaf2d4c5472d4693dcd158aa6.zip
eeek, revert the FS#8482 commit again as it broke the bootloaders and the
generated size wasn't actually used yet! git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16339 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/language.h')
-rw-r--r--apps/language.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/apps/language.h b/apps/language.h
index 6787dbb96d..d8f899b573 100644
--- a/apps/language.h
+++ b/apps/language.h
@@ -1,5 +1,3 @@
1#ifndef __LANGUAGE_H
2#define __LANGUAGE_H
3/*************************************************************************** 1/***************************************************************************
4 * __________ __ ___. 2 * __________ __ ___.
5 * Open \______ \ ____ ____ | | _\_ |__ _______ ___ 3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
@@ -9,7 +7,7 @@
9 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
10 * $Id$ 8 * $Id$
11 * 9 *
12 * Copyright (C) 2002, 2008 Daniel Stenberg 10 * Copyright (C) 2002 Daniel Stenberg
13 * 11 *
14 * All files in this archive are subject to the GNU General Public License. 12 * All files in this archive are subject to the GNU General Public License.
15 * See the file COPYING in the source tree root for full license agreement. 13 * See the file COPYING in the source tree root for full license agreement.
@@ -19,11 +17,6 @@
19 * 17 *
20 ****************************************************************************/ 18 ****************************************************************************/
21 19
22/* The following header is generated by the build system and only defines
23 MAX_LANGUAGE_SIZE to be the size of the largest currently available
24 language! */
25//#include "max_language_size.h"
26
27/* size of the buffer used for loadable, translated strings */ 20/* size of the buffer used for loadable, translated strings */
28#define MAX_LANGUAGE_SIZE 23500 21#define MAX_LANGUAGE_SIZE 23500
29 22
@@ -36,5 +29,3 @@ void lang_init(void);
36 29
37/* load a given language file */ 30/* load a given language file */
38int lang_load(const char *filename); 31int lang_load(const char *filename);
39
40#endif