tdf#39279: Prioritise Thunderbird address books in first-match search
[LibreOffice.git] / sal / textenc / convertiso2022cn.hxx
bloba5a814819adbee2e775fa1f181fcba9b6dcbc3cb
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_SAL_TEXTENC_CONVERTISO2022CN_HXX
21 #define INCLUDED_SAL_TEXTENC_CONVERTISO2022CN_HXX
23 #include "sal/config.h"
24 #include "sal/types.h"
25 #include "tenchelp.hxx"
27 struct ImplIso2022CnConverterData
29 ImplDBCSToUniLeadTab const * m_pGb2312ToUnicodeData;
30 sal_uInt16 const * m_pCns116431992ToUnicodeData;
31 sal_Int32 const * m_pCns116431992ToUnicodeRowOffsets;
32 sal_Int32 const * m_pCns116431992ToUnicodePlaneOffsets;
33 ImplUniToDBCSHighTab const * m_pUnicodeToGb2312Data;
34 sal_uInt8 const * m_pUnicodeToCns116431992Data;
35 sal_Int32 const * m_pUnicodeToCns116431992PageOffsets;
36 sal_Int32 const * m_pUnicodeToCns116431992PlaneOffsets;
39 void * ImplCreateIso2022CnToUnicodeContext();
41 void ImplResetIso2022CnToUnicodeContext(void * pContext);
43 void ImplDestroyIso2022CnToUnicodeContext(void * pContext);
45 sal_Size ImplConvertIso2022CnToUnicode(void const * pData,
46 void * pContext,
47 char const * pSrcBuf,
48 sal_Size nSrcBytes,
49 sal_Unicode * pDestBuf,
50 sal_Size nDestChars,
51 sal_uInt32 nFlags,
52 sal_uInt32 * pInfo,
53 sal_Size * pSrcCvtBytes);
55 void * ImplCreateUnicodeToIso2022CnContext();
57 void ImplResetUnicodeToIso2022CnContext(void * pContext);
59 void ImplDestroyUnicodeToIso2022CnContext(void * pContext);
61 sal_Size ImplConvertUnicodeToIso2022Cn(void const * pData,
62 void * pContext,
63 sal_Unicode const * pSrcBuf,
64 sal_Size nSrcChars,
65 char * pDestBuf,
66 sal_Size nDestBytes,
67 sal_uInt32 nFlags,
68 sal_uInt32 * pInfo,
69 sal_Size * pSrcCvtChars);
71 #endif
73 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */