From 6878b181c7371ecc4af39eef6b01b710cc9f088b Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 24 Nov 2008 11:20:07 +0000 Subject: (svn r14617) -Change: unduplicate the languagepack(header). --- src/strgen/strgen.cpp | 13 +------------ src/strgen/strgen.h | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+), 12 deletions(-) create mode 100644 src/strgen/strgen.h (limited to 'src/strgen') diff --git a/src/strgen/strgen.cpp b/src/strgen/strgen.cpp index ccf4c1398..298597311 100644 --- a/src/strgen/strgen.cpp +++ b/src/strgen/strgen.cpp @@ -7,6 +7,7 @@ #include "../core/endian_func.hpp" #include "../string_func.h" #include "../strings_type.h" +#include "strgen.h" #include "../table/control_codes.h" #include @@ -35,18 +36,6 @@ typedef void (*ParseCmdProc)(char *buf, int value); -struct LanguagePackHeader { - uint32 ident; // 32-bits identifier - uint32 version; // 32-bits of auto generated version info which is basically a hash of strings.h - char name[32]; // the international name of this language - char own_name[32]; // the localized name of this language - char isocode[16]; // the ISO code for the language (not country code) - uint16 offsets[32]; // the offsets - byte plural_form; // plural form index - byte text_dir; // default direction of the text - byte pad[2]; // pad header to be a multiple of 4 -}; - struct CmdStruct { const char *cmd; ParseCmdProc proc; diff --git a/src/strgen/strgen.h b/src/strgen/strgen.h new file mode 100644 index 000000000..a38b1760d --- /dev/null +++ b/src/strgen/strgen.h @@ -0,0 +1,22 @@ +/* $Id$ */ + +/** @file strgen.h Language pack header for strgen (needs to match). */ + +#ifndef STRGEN_H +#define STRGEN_H + +struct LanguagePackHeader { + uint32 ident; // 32-bits identifier + uint32 version; // 32-bits of auto generated version info which is basically a hash of strings.h + char name[32]; // the international name of this language + char own_name[32]; // the localized name of this language + char isocode[16]; // the ISO code for the language (not country code) + uint16 offsets[32]; // the offsets + byte plural_form; // plural form index + byte text_dir; // default direction of the text + byte pad[2]; // pad header to be a multiple of 4 +}; + +assert_compile(sizeof(LanguagePackHeader) % 4 == 0); + +#endif /* STRGEN_H */ -- cgit v1.2.3-54-g00ecf