strings.c
changeset 1376 425781645fba
parent 1321 938ec22ae6f7
child 1542 2ca6d1624e6d
equal deleted inserted replaced
1375:f13d8247928c 1376:425781645fba
    21 typedef struct LanguagePack {
    21 typedef struct LanguagePack {
    22 	uint32 ident;
    22 	uint32 ident;
    23 	uint32 version;			// 32-bits of auto generated version info which is basically a hash of strings.h
    23 	uint32 version;			// 32-bits of auto generated version info which is basically a hash of strings.h
    24 	char name[32];			// the international name of this language
    24 	char name[32];			// the international name of this language
    25 	char own_name[32];	// the localized name of this language
    25 	char own_name[32];	// the localized name of this language
       
    26 	char isocode[16];	// the ISO code for the language (not country code)
    26 	uint16 offsets[32];	// the offsets
    27 	uint16 offsets[32];	// the offsets
    27 	char data[VARARRAY_SIZE];
    28 	char data[VARARRAY_SIZE];
    28 } LanguagePack;
    29 } LanguagePack;
    29 
    30 
    30 static char **_langpack_offs;
    31 static char **_langpack_offs;