16 lines
282 B
C
Raw Normal View History

2014-11-12 16:56:35 +01:00
#ifndef DECLSPEC_H_DEFINED
#define DECLSPEC_H_DEFINED
2014-11-17 20:33:11 +01:00
#if defined(_WIN32) && !defined(STATICLIB)
2014-11-12 16:56:35 +01:00
#ifdef MINIUPNP_EXPORTS
#define LIBSPEC __declspec(dllexport)
#else
#define LIBSPEC __declspec(dllimport)
#endif
#else
#define LIBSPEC
#endif
#endif /* DECLSPEC_H_DEFINED */