4 * Copyright (C) 1999-2001 Internet Software Consortium.
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
11 * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
12 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
13 * INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
14 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
15 * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
16 * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
17 * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 /* Id: msgcat.h,v 1.8 2001/01/09 21:57:13 bwelling Exp */
23 #define ISC_MSGCAT_H 1
32 * Message catalogs aid internationalization of applications by allowing
33 * messages to be retrieved from locale-specific files instead of
34 * hardwiring them into the application. This allows translations of
35 * messages appropriate to the locale to be supplied without recompiling
39 * It's very important that message catalogs work, even if only the
40 * default_text can be used.
43 * The caller must ensure appropriate synchronization of
44 * isc_msgcat_open() and isc_msgcat_close(). isc_msgcat_get()
45 * ensures appropriate synchronization.
48 * No anticipated impact.
54 * No anticipated impact.
65 #include <isc/types.h>
74 isc_msgcat_open(const char *name
, isc_msgcat_t
**msgcatp
);
76 * Open a message catalog.
80 * If memory cannot be allocated or other failures occur, *msgcatp
81 * will be set to NULL. If a NULL msgcat is given to isc_msgcat_get(),
82 * the default_text will be returned, ensuring that some message text
83 * will be available, no matter what's going wrong.
87 * 'name' is a valid string.
89 * msgcatp != NULL && *msgcatp == NULL
93 isc_msgcat_close(isc_msgcat_t
**msgcatp
);
95 * Close a message catalog.
99 * Any string pointers returned by prior calls to isc_msgcat_get() are
100 * invalid after isc_msgcat_close() has been called and must not be
105 * *msgcatp is a valid message catalog or is NULL.
109 * All resources associated with the message catalog are released.
115 isc_msgcat_get(isc_msgcat_t
*msgcat
, int set
, int message
,
116 const char *default_text
);
118 * Get message 'message' from message set 'set' in 'msgcat'. If it
119 * is not available, use 'default_text'.
123 * 'msgcat' is a valid message catalog or is NULL.
129 * 'default_text' is a valid string.
134 #endif /* ISC_MSGCAT_H */