2014-04-27 19:31:10 +00:00
|
|
|
#ifndef DECLSPEC_H_INCLUDED
|
|
|
|
#define DECLSPEC_H_INCLUDED
|
2007-11-06 16:02:50 +00:00
|
|
|
|
2012-03-21 02:25:11 +00:00
|
|
|
#if defined(_WIN32) && !defined(STATICLIB)
|
2014-04-27 19:31:10 +00:00
|
|
|
/* for windows dll */
|
2007-11-06 16:02:50 +00:00
|
|
|
#ifdef MINIUPNP_EXPORTS
|
|
|
|
#define LIBSPEC __declspec(dllexport)
|
|
|
|
#else
|
|
|
|
#define LIBSPEC __declspec(dllimport)
|
|
|
|
#endif
|
|
|
|
#else
|
2014-04-27 19:31:10 +00:00
|
|
|
#if defined(__GNUC__) && __GNUC__ >= 4
|
|
|
|
/* fix dynlib for OS X 10.9.2 and Apple LLVM version 5.0 */
|
|
|
|
#define LIBSPEC __attribute__ ((visibility ("default")))
|
|
|
|
#else
|
|
|
|
#define LIBSPEC
|
|
|
|
#endif
|
2007-11-06 16:02:50 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|