xref: /aoo42x/main/vcl/source/fontsubset/xlat.hxx (revision 3935342b)
10d63794cSAndrew Rist /**************************************************************
2*3935342bSmseidel  *
30d63794cSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
40d63794cSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
50d63794cSAndrew Rist  * distributed with this work for additional information
60d63794cSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
70d63794cSAndrew Rist  * to you under the Apache License, Version 2.0 (the
80d63794cSAndrew Rist  * "License"); you may not use this file except in compliance
90d63794cSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*3935342bSmseidel  *
110d63794cSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*3935342bSmseidel  *
130d63794cSAndrew Rist  * Unless required by applicable law or agreed to in writing,
140d63794cSAndrew Rist  * software distributed under the License is distributed on an
150d63794cSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
160d63794cSAndrew Rist  * KIND, either express or implied.  See the License for the
170d63794cSAndrew Rist  * specific language governing permissions and limitations
180d63794cSAndrew Rist  * under the License.
19*3935342bSmseidel  *
200d63794cSAndrew Rist  *************************************************************/
210d63794cSAndrew Rist 
220d63794cSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir /*|     Author: Alexander Gelfenbain                    |*/
25cdf0e10cSrcweir 
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #ifndef __XLAT_H
28cdf0e10cSrcweir #define __XLAT_H
29cdf0e10cSrcweir 
30cdf0e10cSrcweir //####include "sft.hxx"
31cdf0e10cSrcweir 
32cdf0e10cSrcweir namespace vcl
33cdf0e10cSrcweir {
34cdf0e10cSrcweir // TODO: sal_UCS4
35cdf0e10cSrcweir 
36*3935342bSmseidel 	sal_uInt16 TranslateChar12(sal_uInt16);
37*3935342bSmseidel 	sal_uInt16 TranslateChar13(sal_uInt16);
38*3935342bSmseidel 	sal_uInt16 TranslateChar14(sal_uInt16);
39*3935342bSmseidel 	sal_uInt16 TranslateChar15(sal_uInt16);
40*3935342bSmseidel 	sal_uInt16 TranslateChar16(sal_uInt16);
41*3935342bSmseidel 
42*3935342bSmseidel 	void TranslateString12(sal_uInt16 *, sal_uInt16 *, sal_uInt32);
43*3935342bSmseidel 	void TranslateString13(sal_uInt16 *, sal_uInt16 *, sal_uInt32);
44*3935342bSmseidel 	void TranslateString14(sal_uInt16 *, sal_uInt16 *, sal_uInt32);
45*3935342bSmseidel 	void TranslateString15(sal_uInt16 *, sal_uInt16 *, sal_uInt32);
46*3935342bSmseidel 	void TranslateString16(sal_uInt16 *, sal_uInt16 *, sal_uInt32);
47cdf0e10cSrcweir }
48cdf0e10cSrcweir 
49cdf0e10cSrcweir #endif /* __XLAT_H */
50cdf0e10cSrcweir 
51*3935342bSmseidel /* vim: set noet sw=4 ts=4: */
52