]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/transcode.h
Import CUPS v1.7.1
[thirdparty/cups.git] / cups / transcode.h
CommitLineData
ef416fc2 1/*
61515785 2 * "$Id: transcode.h 10996 2013-05-29 11:51:34Z msweet $"
ef416fc2 3 *
321d8d57 4 * Transcoding definitions for CUPS.
ef416fc2 5 *
321d8d57 6 * Copyright 2007-2011 by Apple Inc.
ef416fc2 7 * Copyright 1997-2006 by Easy Software Products.
8 *
bc44d920 9 * These coded instructions, statements, and computer programs are the
10 * property of Apple Inc. and are protected by Federal copyright
11 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
12 * which should have been included with this file. If this file is
13 * file is missing or damaged, see the license at "http://www.cups.org/".
ef416fc2 14 *
bc44d920 15 * This file is subject to the Apple OS-Developed Software exception.
ef416fc2 16 */
17
18#ifndef _CUPS_TRANSCODE_H_
19# define _CUPS_TRANSCODE_H_
20
21/*
22 * Include necessary headers...
23 */
24
25# include "language.h"
26
27# ifdef __cplusplus
28extern "C" {
29# endif /* __cplusplus */
30
31
ef416fc2 32/*
33 * Constants...
34 */
35
e1d6a774 36# define CUPS_MAX_USTRING 8192 /* Max size of Unicode string */
ef416fc2 37
38
39/*
e1d6a774 40 * Types...
ef416fc2 41 */
42
e1d6a774 43typedef unsigned char cups_utf8_t; /* UTF-8 Unicode/ISO-10646 unit */
44typedef unsigned long cups_utf32_t; /* UTF-32 Unicode/ISO-10646 unit */
45typedef unsigned short cups_ucs2_t; /* UCS-2 Unicode/ISO-10646 unit */
46typedef unsigned long cups_ucs4_t; /* UCS-4 Unicode/ISO-10646 unit */
47typedef unsigned char cups_sbcs_t; /* SBCS Legacy 8-bit unit */
48typedef unsigned short cups_dbcs_t; /* DBCS Legacy 16-bit unit */
49typedef unsigned long cups_vbcs_t; /* VBCS Legacy 32-bit unit */
50 /* EUC uses 8, 16, 24, 32-bit */
ef416fc2 51
ef416fc2 52
53/*
e1d6a774 54 * Prototypes...
ef416fc2 55 */
ef416fc2 56
e1d6a774 57extern int cupsCharsetToUTF8(cups_utf8_t *dest,
58 const char *src,
59 const int maxout,
2fb76298 60 const cups_encoding_t encoding) _CUPS_API_1_2;
e1d6a774 61extern int cupsUTF8ToCharset(char *dest,
62 const cups_utf8_t *src,
63 const int maxout,
2fb76298 64 const cups_encoding_t encoding) _CUPS_API_1_2;
e1d6a774 65extern int cupsUTF8ToUTF32(cups_utf32_t *dest,
66 const cups_utf8_t *src,
2fb76298 67 const int maxout) _CUPS_API_1_2;
e1d6a774 68extern int cupsUTF32ToUTF8(cups_utf8_t *dest,
69 const cups_utf32_t *src,
2fb76298 70 const int maxout) _CUPS_API_1_2;
ef416fc2 71
72# ifdef __cplusplus
73}
74# endif /* __cplusplus */
75
76#endif /* !_CUPS_TRANSCODE_H_ */
77
78
79/*
61515785 80 * End of "$Id: transcode.h 10996 2013-05-29 11:51:34Z msweet $"
ef416fc2 81 */