intl-exports.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /* List of exported symbols of libintl on Cygwin.
  2. Copyright (C) 2006 Free Software Foundation, Inc.
  3. Written by Bruno Haible <bruno@clisp.org>, 2006.
  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. /* IMP(x) is a symbol that contains the address of x. */
  17. #define IMP(x) _imp__##x
  18. /* Ensure that the variable x is exported from the library, and that a
  19. pseudo-variable IMP(x) is available. */
  20. #define VARIABLE(x) \
  21. /* Export x without redefining x. This code was found by compiling a \
  22. snippet: \
  23. extern __declspec(dllexport) int x; int x = 42; */ \
  24. asm (".section .drectve\n"); \
  25. asm (".ascii \" -export:" #x ",data\"\n"); \
  26. asm (".data\n"); \
  27. /* Allocate a pseudo-variable IMP(x). */ \
  28. extern int x; \
  29. void * IMP(x) = &x;
  30. VARIABLE(libintl_version)