1 /* Description of GNU message catalog format: general file layout.
2 Copyright (C) 1995, 1997, 2000-2002 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify it
5 under the terms of the GNU Library General Public License as published
6 by the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301,
24 /* @@ end of prolog @@ */
26 /* The magic number of the GNU message catalog format. */
27 #define _MAGIC 0x950412de
28 #define _MAGIC_SWAPPED 0xde120495
30 /* Revision number of the currently used .mo (binary) file format. */
31 #define MO_REVISION_NUMBER 0
33 /* The following contortions are an attempt to use the C preprocessor
34 to determine an unsigned integral type that is 32 bits wide. An
35 alternative approach is to use autoconf's AC_CHECK_SIZEOF macro, but
36 as of version autoconf-2.13, the AC_CHECK_SIZEOF macro doesn't work
37 when cross-compiling. */
40 # define UINT_MAX_32_BITS 4294967295U
42 # define UINT_MAX_32_BITS 0xFFFFFFFF
45 /* If UINT_MAX isn't defined, assume it's a 32-bit type.
46 This should be valid for all systems GNU cares about because
47 that doesn't include 16-bit systems, and only modern systems
48 (that certainly have <limits.h>) have 64+-bit integral types. */
51 # define UINT_MAX UINT_MAX_32_BITS
54 #if UINT_MAX == UINT_MAX_32_BITS
55 typedef unsigned nls_uint32
;
57 # if USHRT_MAX == UINT_MAX_32_BITS
58 typedef unsigned short nls_uint32
;
60 # if ULONG_MAX == UINT_MAX_32_BITS
61 typedef unsigned long nls_uint32
;
63 /* The following line is intended to throw an error. Using #error is
64 not portable enough. */
65 "Cannot determine unsigned 32-bit data type."
71 /* Header for binary .mo file format. */
74 /* The magic number. */
76 /* The revision number of the file format. */
79 /* The following are only used in .mo files with major revision 0. */
81 /* The number of strings pairs. */
83 /* Offset of table with start offsets of original strings. */
84 nls_uint32 orig_tab_offset
;
85 /* Offset of table with start offsets of translated strings. */
86 nls_uint32 trans_tab_offset
;
87 /* Size of hash table. */
88 nls_uint32 hash_tab_size
;
89 /* Offset of first hash table entry. */
90 nls_uint32 hash_tab_offset
;
92 /* The following are only used in .mo files with minor revision >= 1. */
94 /* The number of system dependent segments. */
95 nls_uint32 n_sysdep_segments
;
96 /* Offset of table describing system dependent segments. */
97 nls_uint32 sysdep_segments_offset
;
98 /* The number of system dependent strings pairs. */
99 nls_uint32 n_sysdep_strings
;
100 /* Offset of table with start offsets of original sysdep strings. */
101 nls_uint32 orig_sysdep_tab_offset
;
102 /* Offset of table with start offsets of translated sysdep strings. */
103 nls_uint32 trans_sysdep_tab_offset
;
106 /* Descriptor for static string contained in the binary .mo file. */
109 /* Length of addressed string, not including the trailing NUL. */
111 /* Offset of string in file. */
115 /* The following are only used in .mo files with minor revision >= 1. */
117 /* Descriptor for system dependent string segment. */
118 struct sysdep_segment
120 /* Length of addressed string, including the trailing NUL. */
122 /* Offset of string in file. */
126 /* Descriptor for system dependent string. */
129 /* Offset of static string segments in file. */
131 /* Alternating sequence of static and system dependent segments.
132 The last segment is a static segment, including the trailing NUL. */
135 /* Size of static segment. */
137 /* Reference to system dependent string segment, or ~0 at the end. */
138 nls_uint32 sysdepref
;
142 /* Marker for the end of the segments[] array. This has the value 0xFFFFFFFF,
143 regardless whether 'int' is 16 bit, 32 bit, or 64 bit. */
144 #define SEGMENTS_END ((nls_uint32) ~0)
146 /* @@ begin of epilog @@ */
148 #endif /* gettext.h */