X-Git-Url: http://git.silcnet.org/gitweb/?p=silc.git;a=blobdiff_plain;f=apps%2Fsilcer%2Fintl%2Fgettext.h;h=0c9a102e9db31577026dcb01ef0f85b6edbabe66;hp=eb5889074a460c9a6b7724136b9e7d6208830729;hb=a818c5b5411bbc4436d1c5f011236985c96bb787;hpb=7910ce2a5c55211a4ea09a52832c6ed32c0b64fd diff --git a/apps/silcer/intl/gettext.h b/apps/silcer/intl/gettext.h index eb588907..0c9a102e 100644 --- a/apps/silcer/intl/gettext.h +++ b/apps/silcer/intl/gettext.h @@ -53,13 +53,13 @@ #endif #if UINT_MAX == UINT_MAX_32_BITS -typedef unsigned nls_uint32; +typedef unsigned nls_SilcUInt32; #else # if USHRT_MAX == UINT_MAX_32_BITS -typedef unsigned short nls_uint32; +typedef unsigned short nls_SilcUInt32; # else # if ULONG_MAX == UINT_MAX_32_BITS -typedef unsigned long nls_uint32; +typedef unsigned long nls_SilcUInt32; # else /* The following line is intended to throw an error. Using #error is not portable enough. */ @@ -73,27 +73,27 @@ typedef unsigned long nls_uint32; struct mo_file_header { /* The magic number. */ - nls_uint32 magic; + nls_SilcUInt32 magic; /* The revision number of the file format. */ - nls_uint32 revision; + nls_SilcUInt32 revision; /* The number of strings pairs. */ - nls_uint32 nstrings; + nls_SilcUInt32 nstrings; /* Offset of table with start offsets of original strings. */ - nls_uint32 orig_tab_offset; + nls_SilcUInt32 orig_tab_offset; /* Offset of table with start offsets of translation strings. */ - nls_uint32 trans_tab_offset; + nls_SilcUInt32 trans_tab_offset; /* Size of hashing table. */ - nls_uint32 hash_tab_size; + nls_SilcUInt32 hash_tab_size; /* Offset of first hashing entry. */ - nls_uint32 hash_tab_offset; + nls_SilcUInt32 hash_tab_offset; }; struct string_desc { /* Length of addressed string. */ - nls_uint32 length; + nls_SilcUInt32 length; /* Offset of string in file. */ - nls_uint32 offset; + nls_SilcUInt32 offset; }; /* @@ begin of epilog @@ */