here, have a Thumb back-end
[mozilla-central.git] / intl / uconv / util / umap.h
blob74cceea72819b1c5fa21f398e48f23a513a1c30d
1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998
20 * the Initial Developer. All Rights Reserved.
22 * Contributor(s):
23 * jeroen.dobbelaere@acunia.com
25 * Alternatively, the contents of this file may be used under the terms of
26 * either of the GNU General Public License Version 2 or later (the "GPL"),
27 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 * in which case the provisions of the GPL or the LGPL are applicable instead
29 * of those above. If you wish to allow use of your version of this file only
30 * under the terms of either the GPL or the LGPL, and not to allow others to
31 * use your version of this file under the terms of the MPL, indicate your
32 * decision by deleting the provisions above and replace them with the notice
33 * and other provisions required by the GPL or the LGPL. If you do not delete
34 * the provisions above, a recipient may use your version of this file under
35 * the terms of any one of the MPL, the GPL or the LGPL.
37 * ***** END LICENSE BLOCK ***** */
38 #ifndef __UMAP__
39 #define __UMAP__
41 #define NOMAPPING 0xfffd
43 enum {
44 uFormat0Tag = 0,
45 uFormat1Tag,
46 uFormat2Tag,
47 uNumFormatTag
50 typedef struct {
51 PRUint16 srcBegin; /* 2 byte */
52 PRUint16 srcEnd; /* 2 byte */
53 PRUint16 destBegin; /* 2 byte */
54 } uFormat0;
56 typedef struct {
57 PRUint16 srcBegin; /* 2 byte */
58 PRUint16 srcEnd; /* 2 byte */
59 PRUint16 mappingOffset; /* 2 byte */
60 } uFormat1;
62 typedef struct {
63 PRUint16 srcBegin; /* 2 byte */
64 PRUint16 srcEnd; /* 2 byte -waste */
65 PRUint16 destBegin; /* 2 byte */
66 } uFormat2;
68 typedef struct {
69 union {
70 uFormat0 format0;
71 uFormat1 format1;
72 uFormat2 format2;
73 } fmt;
74 } uMapCell;
76 #define UMAPCELL_SIZE (3*sizeof(PRUint16))
78 typedef struct {
79 PRUint16 itemOfList;
80 PRUint16 offsetToFormatArray;
81 PRUint16 offsetToMapCellArray;
82 PRUint16 offsetToMappingTable;
83 PRUint16 data[1];
84 } uTable;
86 #endif