xref: /aoo42x/main/sal/textenc/tcvtuni1.tab (revision cdf0e10c)
1*cdf0e10cSrcweir/*************************************************************************
2*cdf0e10cSrcweir *
3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir *
5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir *
7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir *
9*cdf0e10cSrcweir * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir *
11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir *
15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir *
21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir *
26*cdf0e10cSrcweir ************************************************************************/
27*cdf0e10cSrcweir
28*cdf0e10cSrcweir#ifndef INCLUDED_RTL_TEXTENC_CONTEXT_H
29*cdf0e10cSrcweir#include "context.h"
30*cdf0e10cSrcweir#endif
31*cdf0e10cSrcweir
32*cdf0e10cSrcweir/* Unicode Encodings */
33*cdf0e10cSrcweir
34*cdf0e10cSrcweirstatic ImplTextEncodingData const aImplUTF7TextEncodingData
35*cdf0e10cSrcweir    = { { NULL,
36*cdf0e10cSrcweir          ImplUTF7ToUnicode,
37*cdf0e10cSrcweir          ImplUnicodeToUTF7,
38*cdf0e10cSrcweir          ImplUTF7CreateUTF7TextToUnicodeContext,
39*cdf0e10cSrcweir          ImplUTF7DestroyTextToUnicodeContext,
40*cdf0e10cSrcweir          ImplUTF7ResetTextToUnicodeContext,
41*cdf0e10cSrcweir          ImplUTF7CreateUnicodeToTextContext,
42*cdf0e10cSrcweir          ImplUTF7DestroyUnicodeToTextContext,
43*cdf0e10cSrcweir          ImplUTF7ResetUnicodeToTextContext },
44*cdf0e10cSrcweir        1,
45*cdf0e10cSrcweir        6,
46*cdf0e10cSrcweir        1,
47*cdf0e10cSrcweir        0,
48*cdf0e10cSrcweir        "iso8859-1",
49*cdf0e10cSrcweir        "utf-7",
50*cdf0e10cSrcweir        RTL_TEXTENCODING_INFO_CONTEXT
51*cdf0e10cSrcweir            | RTL_TEXTENCODING_INFO_UNICODE
52*cdf0e10cSrcweir            | RTL_TEXTENCODING_INFO_7BIT
53*cdf0e10cSrcweir            | RTL_TEXTENCODING_INFO_MULTIBYTE
54*cdf0e10cSrcweir            | RTL_TEXTENCODING_INFO_MIME };
55*cdf0e10cSrcweir    /* SCRIPT_UNICODE, pc code page 850 */
56*cdf0e10cSrcweir
57*cdf0e10cSrcweirstatic ImplTextEncodingData const aImplUTF8TextEncodingData
58*cdf0e10cSrcweir    = { { NULL,
59*cdf0e10cSrcweir          &ImplConvertUtf8ToUnicode,
60*cdf0e10cSrcweir          &ImplConvertUnicodeToUtf8,
61*cdf0e10cSrcweir          &ImplCreateUtf8ToUnicodeContext,
62*cdf0e10cSrcweir          &ImplDestroyContext,
63*cdf0e10cSrcweir          &ImplResetUtf8ToUnicodeContext,
64*cdf0e10cSrcweir          &ImplCreateUnicodeToUtf8Context,
65*cdf0e10cSrcweir          &ImplDestroyContext,
66*cdf0e10cSrcweir          &ImplResetUnicodeToUtf8Context },
67*cdf0e10cSrcweir        1,
68*cdf0e10cSrcweir        6,
69*cdf0e10cSrcweir        1,
70*cdf0e10cSrcweir        0,
71*cdf0e10cSrcweir        "iso8859-1",
72*cdf0e10cSrcweir        "utf-8",
73*cdf0e10cSrcweir        RTL_TEXTENCODING_INFO_ASCII
74*cdf0e10cSrcweir            | RTL_TEXTENCODING_INFO_UNICODE
75*cdf0e10cSrcweir            | RTL_TEXTENCODING_INFO_MULTIBYTE
76*cdf0e10cSrcweir            | RTL_TEXTENCODING_INFO_MIME };
77*cdf0e10cSrcweir    /* SCRIPT_UNICODE, pc code page 850 */
78*cdf0e10cSrcweir
79*cdf0e10cSrcweirstatic char aImplJavaUtf8TextConverterTag;
80*cdf0e10cSrcweir    /* The value of this tag is irrelevant.  Only its address != NULL is used to
81*cdf0e10cSrcweir       distinguish between RTL_TEXTENCODING_UTF8 and
82*cdf0e10cSrcweir       RTL_TEXTENCODING_JAVA_UTF8. */
83*cdf0e10cSrcweir
84*cdf0e10cSrcweirstatic ImplTextEncodingData const aImplJavaUtf8TextEncodingData
85*cdf0e10cSrcweir    = { { &aImplJavaUtf8TextConverterTag,
86*cdf0e10cSrcweir          &ImplConvertUtf8ToUnicode,
87*cdf0e10cSrcweir          &ImplConvertUnicodeToUtf8,
88*cdf0e10cSrcweir          &ImplCreateUtf8ToUnicodeContext,
89*cdf0e10cSrcweir          &ImplDestroyContext,
90*cdf0e10cSrcweir          &ImplResetUtf8ToUnicodeContext,
91*cdf0e10cSrcweir          &ImplCreateUnicodeToUtf8Context,
92*cdf0e10cSrcweir          &ImplDestroyContext,
93*cdf0e10cSrcweir          &ImplResetUnicodeToUtf8Context },
94*cdf0e10cSrcweir        1,
95*cdf0e10cSrcweir        3,
96*cdf0e10cSrcweir        1,
97*cdf0e10cSrcweir        0,
98*cdf0e10cSrcweir        NULL,
99*cdf0e10cSrcweir        NULL,
100*cdf0e10cSrcweir        RTL_TEXTENCODING_INFO_UNICODE | RTL_TEXTENCODING_INFO_MULTIBYTE };
101