summaryrefslogtreecommitdiff
path: root/apps/language.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/language.h')
-rw-r--r--apps/language.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/apps/language.h b/apps/language.h
index d8f899b573..6787dbb96d 100644
--- a/apps/language.h
+++ b/apps/language.h
@@ -1,3 +1,5 @@
1#ifndef __LANGUAGE_H
2#define __LANGUAGE_H
1/*************************************************************************** 3/***************************************************************************
2 * __________ __ ___. 4 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___ 5 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
@@ -7,7 +9,7 @@
7 * \/ \/ \/ \/ \/ 9 * \/ \/ \/ \/ \/
8 * $Id$ 10 * $Id$
9 * 11 *
10 * Copyright (C) 2002 Daniel Stenberg 12 * Copyright (C) 2002, 2008 Daniel Stenberg
11 * 13 *
12 * All files in this archive are subject to the GNU General Public License. 14 * 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. 15 * See the file COPYING in the source tree root for full license agreement.
@@ -17,6 +19,11 @@
17 * 19 *
18 ****************************************************************************/ 20 ****************************************************************************/
19 21
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
20/* size of the buffer used for loadable, translated strings */ 27/* size of the buffer used for loadable, translated strings */
21#define MAX_LANGUAGE_SIZE 23500 28#define MAX_LANGUAGE_SIZE 23500
22 29
@@ -29,3 +36,5 @@ void lang_init(void);
29 36
30/* load a given language file */ 37/* load a given language file */
31int lang_load(const char *filename); 38int lang_load(const char *filename);
39
40#endif