2008-02-18 12:17:34 +00:00
|
|
|
#ifndef __LANGUAGE_H
|
|
|
|
#define __LANGUAGE_H
|
2002-09-24 12:39:33 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
2008-02-18 12:17:34 +00:00
|
|
|
* Copyright (C) 2002, 2008 Daniel Stenberg
|
2002-09-24 12:39:33 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2008-02-18 12:17:34 +00:00
|
|
|
/* The following header is generated by the build system and only defines
|
|
|
|
MAX_LANGUAGE_SIZE to be the size of the largest currently available
|
|
|
|
language! */
|
|
|
|
#include "max_language_size.h"
|
2002-09-24 12:39:33 +00:00
|
|
|
|
|
|
|
/* both these must match the two initial bytes in the binary lang file */
|
|
|
|
#define LANGUAGE_COOKIE 0x1a
|
2007-08-05 19:19:39 +00:00
|
|
|
#define LANGUAGE_VERSION 0x04
|
2002-09-24 12:39:33 +00:00
|
|
|
|
2005-01-19 21:43:15 +00:00
|
|
|
/* Initialize language array with the builtin strings */
|
|
|
|
void lang_init(void);
|
|
|
|
|
2002-09-24 12:39:33 +00:00
|
|
|
/* load a given language file */
|
2004-08-18 01:09:31 +00:00
|
|
|
int lang_load(const char *filename);
|
2008-02-18 12:17:34 +00:00
|
|
|
|
|
|
|
#endif
|