visibility.h 436 B

123456789101112131415161718192021
  1. #ifndef _WLC_VISIBLITY_H_
  2. #define _WLC_VISIBLITY_H_
  3. #if defined _WIN32 || defined __CYGWIN__
  4. # define WLC_HELPER_DLL_EXPORT __declspec(dllexport)
  5. #else
  6. # if __GNUC__ >= 4
  7. # define WLC_HELPER_DLL_EXPORT __attribute__((visibility("default")))
  8. # else
  9. # define WLC_HELPER_DLL_EXPORT
  10. # endif
  11. #endif
  12. #ifdef WLC_BUILD_SHARED
  13. # define WLC_API WLC_HELPER_DLL_EXPORT
  14. #else
  15. # define WLC_API
  16. #endif
  17. #endif /* _WLC_VISIBILITY_H_ */