1 /* intl-compat.c - Stub functions to call gettext functions from GNU gettext
3 Copyright (C) 1995, 2000-2003 Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of the GNU Library General Public License as published
7 by the Free Software Foundation; either version 2, or (at your option)
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301,
26 /* @@ end of prolog @@ */
28 /* This file redirects the gettext functions (without prefix) to those
29 defined in the included GNU libintl library (with "libintl_" prefix).
30 It is compiled into libintl in order to make the AM_GNU_GETTEXT test
31 of gettext <= 0.11.2 work with the libintl library >= 0.11.3 which
32 has the redirections primarily in the <libintl.h> include file.
33 It is also compiled into libgnuintl so that libgnuintl.so can be used
34 as LD_PRELOADable library on glibc systems, to provide the extra
35 features that the functions in the libc don't have (namely, logging). */
46 #undef bind_textdomain_codeset
49 /* When building a DLL, we must export some functions. Note that because
50 the functions are only defined for binary backward compatibility, we
51 don't need to use __declspec(dllimport) in any case. */
52 #if defined _MSC_VER && BUILDING_DLL
53 # define DLL_EXPORTED __declspec(dllexport)
64 return libintl_gettext (msgid
);
70 dgettext (domainname
, msgid
)
71 const char *domainname
;
74 return libintl_dgettext (domainname
, msgid
);
80 dcgettext (domainname
, msgid
, category
)
81 const char *domainname
;
85 return libintl_dcgettext (domainname
, msgid
, category
);
91 ngettext (msgid1
, msgid2
, n
)
96 return libintl_ngettext (msgid1
, msgid2
, n
);
102 dngettext (domainname
, msgid1
, msgid2
, n
)
103 const char *domainname
;
108 return libintl_dngettext (domainname
, msgid1
, msgid2
, n
);
114 dcngettext (domainname
, msgid1
, msgid2
, n
, category
)
115 const char *domainname
;
121 return libintl_dcngettext (domainname
, msgid1
, msgid2
, n
, category
);
127 textdomain (domainname
)
128 const char *domainname
;
130 return libintl_textdomain (domainname
);
136 bindtextdomain (domainname
, dirname
)
137 const char *domainname
;
140 return libintl_bindtextdomain (domainname
, dirname
);
146 bind_textdomain_codeset (domainname
, codeset
)
147 const char *domainname
;
150 return libintl_bind_textdomain_codeset (domainname
, codeset
);