2007-01-26 19:36:29 +03:00
|
|
|
/*
|
2014-06-25 03:25:27 +04:00
|
|
|
* Copyright 2007 Haiku, Inc. All rights reserved.
|
2007-01-26 19:36:29 +03:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
2002-10-23 17:54:44 +04:00
|
|
|
#ifndef _UTF8_H
|
|
|
|
#define _UTF8_H
|
|
|
|
|
2007-01-26 19:36:29 +03:00
|
|
|
|
2002-10-23 17:54:44 +04:00
|
|
|
#include <BeBuild.h>
|
|
|
|
#include <InterfaceDefs.h>
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
|
2007-01-26 19:36:29 +03:00
|
|
|
|
2014-06-25 03:25:27 +04:00
|
|
|
/* Conversion Flavors */
|
2002-10-23 17:54:44 +04:00
|
|
|
enum {
|
2014-06-25 03:25:27 +04:00
|
|
|
B_ISO1_CONVERSION, /* ISO 8859-x */
|
2007-01-26 19:36:29 +03:00
|
|
|
B_ISO2_CONVERSION,
|
|
|
|
B_ISO3_CONVERSION,
|
|
|
|
B_ISO4_CONVERSION,
|
|
|
|
B_ISO5_CONVERSION,
|
|
|
|
B_ISO6_CONVERSION,
|
|
|
|
B_ISO7_CONVERSION,
|
|
|
|
B_ISO8_CONVERSION,
|
|
|
|
B_ISO9_CONVERSION,
|
|
|
|
B_ISO10_CONVERSION,
|
2014-06-25 03:25:27 +04:00
|
|
|
B_MAC_ROMAN_CONVERSION, /* Macintosh Roman */
|
|
|
|
B_SJIS_CONVERSION, /* Shift-JIS */
|
|
|
|
B_EUC_CONVERSION, /* EUC Packed Japanese */
|
|
|
|
B_JIS_CONVERSION, /* JIS X 0208-1990 */
|
|
|
|
B_MS_WINDOWS_CONVERSION, /* Windows Latin-1 Codepage 1252 */
|
|
|
|
B_UNICODE_CONVERSION, /* Unicode 2.0, UCS-2 */
|
|
|
|
B_KOI8R_CONVERSION, /* KOI8-R */
|
|
|
|
B_MS_WINDOWS_1251_CONVERSION, /* Windows Cyrillic Codepage 1251 */
|
|
|
|
B_MS_DOS_866_CONVERSION, /* MS-DOS Codepage 866 */
|
|
|
|
B_MS_DOS_CONVERSION, /* MS-DOS Codepage 437 */
|
|
|
|
B_EUC_KR_CONVERSION, /* EUC Korean */
|
2007-01-26 19:36:29 +03:00
|
|
|
B_ISO13_CONVERSION,
|
|
|
|
B_ISO14_CONVERSION,
|
|
|
|
B_ISO15_CONVERSION,
|
2014-06-25 03:25:27 +04:00
|
|
|
B_BIG5_CONVERSION, /* Chinese Big5 */
|
|
|
|
B_GBK_CONVERSION, /* Chinese GB18030 */
|
|
|
|
B_UTF16_CONVERSION, /* Unicode UTF-16 */
|
|
|
|
B_MS_WINDOWS_1250_CONVERSION /* Windows Central European Codepage */
|
2002-10-23 17:54:44 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-06-25 03:25:27 +04:00
|
|
|
/* Conversion Functions */
|
2007-01-26 19:36:29 +03:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
|
|
|
status_t convert_to_utf8(uint32 sourceEncoding, const char* source,
|
|
|
|
int32* sourceLength, char* dest, int32* destLength, int32* state,
|
|
|
|
char substitute = B_SUBSTITUTE);
|
2002-10-23 17:54:44 +04:00
|
|
|
|
2007-01-26 19:36:29 +03:00
|
|
|
status_t convert_from_utf8(uint32 destEncoding, const char* source,
|
|
|
|
int32* sourceLength, char* dest, int32* destLength, int32* state,
|
|
|
|
char substitute = B_SUBSTITUTE);
|
2002-10-23 17:54:44 +04:00
|
|
|
|
2014-06-25 03:25:27 +04:00
|
|
|
#endif /* __cplusplus */
|
2002-10-23 17:54:44 +04:00
|
|
|
|
|
|
|
#endif /* _UTF8_H */
|