visibility.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /* visibility.h
  2. *
  3. * Copyright (C) 2006-2015 wolfSSL Inc.
  4. *
  5. * This file is part of wolfSSL. (formerly known as CyaSSL)
  6. *
  7. * wolfSSL is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * wolfSSL is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
  20. */
  21. /* Visibility control macros */
  22. #ifndef CTAO_CRYPT_VISIBILITY_H
  23. #define CTAO_CRYPT_VISIBILITY_H
  24. /* fips compatibility @wc_fips */
  25. #ifndef HAVE_FIPS
  26. #include <wolfssl/wolfcrypt/visibility.h>
  27. #define CYASSL_API WOLFSSL_API
  28. #define CYASSL_LOCAL WOLFSSL_LOCAL
  29. #else
  30. /* CYASSL_API is used for the public API symbols.
  31. It either imports or exports (or does nothing for static builds)
  32. CYASSL_LOCAL is used for non-API symbols (private).
  33. */
  34. #if defined(BUILDING_WOLFSSL)
  35. #if defined(HAVE_VISIBILITY) && HAVE_VISIBILITY
  36. #define CYASSL_API __attribute__ ((visibility("default")))
  37. #define CYASSL_LOCAL __attribute__ ((visibility("hidden")))
  38. #elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550)
  39. #define CYASSL_API __global
  40. #define CYASSL_LOCAL __hidden
  41. #elif defined(_MSC_VER)
  42. #ifdef CYASSL_DLL
  43. #define CYASSL_API extern __declspec(dllexport)
  44. #else
  45. #define CYASSL_API
  46. #endif
  47. #define CYASSL_LOCAL
  48. #else
  49. #define CYASSL_API
  50. #define CYASSL_LOCAL
  51. #endif /* HAVE_VISIBILITY */
  52. #else /* BUILDING_WOLFSSL */
  53. #if defined(_MSC_VER)
  54. #ifdef CYASSL_DLL
  55. #define CYASSL_API extern __declspec(dllimport)
  56. #else
  57. #define CYASSL_API
  58. #endif
  59. #define CYASSL_LOCAL
  60. #else
  61. #define CYASSL_API
  62. #define CYASSL_LOCAL
  63. #endif
  64. #endif /* BUILDING_WOLFSSL */
  65. #endif /* HAVE_FIPS */
  66. #endif /* CTAO_CRYPT_VISIBILITY_H */