]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/i18n.h
To prepare to load cups into easysw/current, perform 4 renames.
[thirdparty/cups.git] / cups / i18n.h
CommitLineData
ef416fc2 1/*
2 * "$Id: i18n.h 4903 2006-01-10 20:02:46Z mike $"
3 *
4 * (Private) localization support for the Common UNIX Printing System (CUPS).
5 *
6 * Copyright 1997-2006 by Easy Software Products.
7 *
8 * These coded instructions, statements, and computer programs are the
9 * property of Easy Software Products and are protected by Federal
10 * copyright law. Distribution and use rights are outlined in the file
11 * "LICENSE.txt" which should have been included with this file. If this
12 * file is missing or damaged please contact Easy Software Products
13 * at:
14 *
15 * Attn: CUPS Licensing Information
16 * Easy Software Products
17 * 44141 Airport View Drive, Suite 204
18 * Hollywood, Maryland 20636 USA
19 *
20 * Voice: (301) 373-9600
21 * EMail: cups-info@cups.org
22 * WWW: http://www.cups.org
23 *
24 * This file is subject to the Apple OS-Developed Software exception.
25 */
26
27#ifndef _CUPS_I18N_H_
28# define _CUPS_I18N_H_
29
30/*
31 * Include necessary headers...
32 */
33
34# include "language.h"
35
36# ifdef __cplusplus
37extern "C" {
38# endif /* __cplusplus */
39
40
41/*
42 * Macro for localized text...
43 */
44
45# define _(x) x
46
47
48/*
49 * Types...
50 */
51
52typedef struct _cups_message_s /**** Message catalog entry ****/
53{
54 char *id, /* Original string */
55 *str; /* Localized string */
56} _cups_message_t;
57
58
59/*
60 * Prototypes...
61 */
62
63/**** New in CUPS 1.1.20 ****/
64extern void _cupsRestoreLocale(int category, char *oldlocale);
65extern char *_cupsSaveLocale(int category, const char *locale);
66
67/**** New in CUPS 1.2 ****/
68extern const char *_cupsEncodingName(cups_encoding_t encoding);
69extern int _cupsLangPrintf(FILE *fp, cups_lang_t *lang,
70 const char *message, ...)
71# ifdef __GNUC__
72__attribute__ ((__format__ (__printf__, 3, 4)))
73# endif /* __GNUC__ */
74;
75extern int _cupsLangPuts(FILE *fp, cups_lang_t *lang,
76 const char *message);
77extern const char *_cupsLangString(cups_lang_t *lang, const char *message);
78extern void _cupsMessageFree(cups_array_t *a);
79extern cups_array_t *_cupsMessageLoad(const char *filename);
80extern const char *_cupsMessageLookup(cups_array_t *a, const char *m);
81
82# ifdef __cplusplus
83}
84# endif /* __cplusplus */
85
86#endif /* !_CUPS_I18N_H_ */
87
88/*
89 * End of "$Id: i18n.h 4903 2006-01-10 20:02:46Z mike $".
90 */