intl-compat.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /* intl-compat.c - Stub functions to call gettext functions from GNU gettext
  2. Library.
  3. Copyright (C) 1995, 2000-2003, 2005 Software Foundation, Inc.
  4. This program is free software; you can redistribute it and/or modify it
  5. under the terms of the GNU Library General Public License as published
  6. by the Free Software Foundation; either version 2, or (at your option)
  7. any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Library General Public License for more details.
  12. You should have received a copy of the GNU Library General Public
  13. License along with this program; if not, write to the Free Software
  14. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
  15. USA. */
  16. #ifdef HAVE_CONFIG_H
  17. # include <config.h>
  18. #endif
  19. #include "gettextP.h"
  20. /* @@ end of prolog @@ */
  21. /* This file redirects the gettext functions (without prefix) to those
  22. defined in the included GNU libintl library (with "libintl_" prefix).
  23. It is compiled into libintl in order to make the AM_GNU_GETTEXT test
  24. of gettext <= 0.11.2 work with the libintl library >= 0.11.3 which
  25. has the redirections primarily in the <libintl.h> include file.
  26. It is also compiled into libgnuintl so that libgnuintl.so can be used
  27. as LD_PRELOADable library on glibc systems, to provide the extra
  28. features that the functions in the libc don't have (namely, logging). */
  29. #undef gettext
  30. #undef dgettext
  31. #undef dcgettext
  32. #undef ngettext
  33. #undef dngettext
  34. #undef dcngettext
  35. #undef textdomain
  36. #undef bindtextdomain
  37. #undef bind_textdomain_codeset
  38. /* When building a DLL, we must export some functions. Note that because
  39. the functions are only defined for binary backward compatibility, we
  40. don't need to use __declspec(dllimport) in any case. */
  41. #if HAVE_VISIBILITY && BUILDING_DLL
  42. # define DLL_EXPORTED __attribute__((__visibility__("default")))
  43. #elif defined _MSC_VER && BUILDING_DLL
  44. # define DLL_EXPORTED __declspec(dllexport)
  45. #else
  46. # define DLL_EXPORTED
  47. #endif
  48. DLL_EXPORTED
  49. char *
  50. gettext (const char *msgid)
  51. {
  52. return libintl_gettext (msgid);
  53. }
  54. DLL_EXPORTED
  55. char *
  56. dgettext (const char *domainname, const char *msgid)
  57. {
  58. return libintl_dgettext (domainname, msgid);
  59. }
  60. DLL_EXPORTED
  61. char *
  62. dcgettext (const char *domainname, const char *msgid, int category)
  63. {
  64. return libintl_dcgettext (domainname, msgid, category);
  65. }
  66. DLL_EXPORTED
  67. char *
  68. ngettext (const char *msgid1, const char *msgid2, unsigned long int n)
  69. {
  70. return libintl_ngettext (msgid1, msgid2, n);
  71. }
  72. DLL_EXPORTED
  73. char *
  74. dngettext (const char *domainname,
  75. const char *msgid1, const char *msgid2, unsigned long int n)
  76. {
  77. return libintl_dngettext (domainname, msgid1, msgid2, n);
  78. }
  79. DLL_EXPORTED
  80. char *
  81. dcngettext (const char *domainname,
  82. const char *msgid1, const char *msgid2, unsigned long int n,
  83. int category)
  84. {
  85. return libintl_dcngettext (domainname, msgid1, msgid2, n, category);
  86. }
  87. DLL_EXPORTED
  88. char *
  89. textdomain (const char *domainname)
  90. {
  91. return libintl_textdomain (domainname);
  92. }
  93. DLL_EXPORTED
  94. char *
  95. bindtextdomain (const char *domainname, const char *dirname)
  96. {
  97. return libintl_bindtextdomain (domainname, dirname);
  98. }
  99. DLL_EXPORTED
  100. char *
  101. bind_textdomain_codeset (const char *domainname, const char *codeset)
  102. {
  103. return libintl_bind_textdomain_codeset (domainname, codeset);
  104. }