2014-04-09 12:14:35 +00:00
|
|
|
#ifndef DECLSPEC_H_INCLUDED
|
|
|
|
#define DECLSPEC_H_INCLUDED
|
|
|
|
|
2014-10-02 16:43:13 +00:00
|
|
|
#if defined(_WIN32) && !defined(MINIUPNP_STATICLIB)
|
2014-04-09 12:14:35 +00:00
|
|
|
/* for windows dll */
|
|
|
|
#ifdef MINIUPNP_EXPORTS
|
2014-10-02 16:43:13 +00:00
|
|
|
#define MINIUPNP_LIBSPEC __declspec(dllexport)
|
2014-04-09 12:14:35 +00:00
|
|
|
#else
|
2014-10-02 16:43:13 +00:00
|
|
|
#define MINIUPNP_LIBSPEC __declspec(dllimport)
|
2014-04-09 12:14:35 +00:00
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#if defined(__GNUC__) && __GNUC__ >= 4
|
|
|
|
/* fix dynlib for OS X 10.9.2 and Apple LLVM version 5.0 */
|
2014-10-02 16:43:13 +00:00
|
|
|
#define MINIUPNP_LIBSPEC __attribute__ ((visibility ("default")))
|
2014-04-09 12:14:35 +00:00
|
|
|
#else
|
2014-10-02 16:43:13 +00:00
|
|
|
#define MINIUPNP_LIBSPEC
|
2014-04-09 12:14:35 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|