1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
10 #include <sal/types.h>
12 sal_Size
ImplConvertIsciiDevanagariToUnicode(void const * pData
,
13 void * pContext
, char const * pSrcBuf
, sal_Size nSrcBytes
,
14 sal_Unicode
* pDestBuf
, sal_Size nDestChars
, sal_uInt32 nFlags
,
15 sal_uInt32
* pInfo
, sal_Size
* pSrcCvtBytes
);
17 sal_Size
ImplConvertUnicodeToIsciiDevanagari(void const * pData
,
18 void * pContext
, sal_Unicode
const * pSrcBuf
, sal_Size nSrcChars
,
19 char * pDestBuf
, sal_Size nDestBytes
, sal_uInt32 nFlags
,
20 sal_uInt32
* pInfo
, sal_Size
* pSrcCvtChars
);
22 void *ImplCreateIsciiDevanagariToUnicodeContext();
24 void ImplDestroyIsciiDevanagariToUnicodeContext(void * pContext
);
26 void ImplResetIsciiDevanagariToUnicodeContext(void * pContext
);
28 void *ImplCreateUnicodeToIsciiDevanagariContext();
30 void ImplResetUnicodeToIsciiDevanagariContext(void * pContext
);
32 void ImplDestroyUnicodeToIsciiDevanagariContext(void * pContext
);
34 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */