10d63794cSAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 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 10cdf0e10cSrcweir * 110d63794cSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 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. 19cdf0e10cSrcweir * 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 36cdf0e10cSrcweir sal_uInt16 TranslateChar12(sal_uInt16); 37cdf0e10cSrcweir sal_uInt16 TranslateChar13(sal_uInt16); 38cdf0e10cSrcweir sal_uInt16 TranslateChar14(sal_uInt16); 39cdf0e10cSrcweir sal_uInt16 TranslateChar15(sal_uInt16); 40cdf0e10cSrcweir sal_uInt16 TranslateChar16(sal_uInt16); 41cdf0e10cSrcweir 42cdf0e10cSrcweir void TranslateString12(sal_uInt16 *, sal_uInt16 *, sal_uInt32); 43cdf0e10cSrcweir void TranslateString13(sal_uInt16 *, sal_uInt16 *, sal_uInt32); 44cdf0e10cSrcweir void TranslateString14(sal_uInt16 *, sal_uInt16 *, sal_uInt32); 45cdf0e10cSrcweir void TranslateString15(sal_uInt16 *, sal_uInt16 *, sal_uInt32); 46cdf0e10cSrcweir 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