2011-09-27 20:25:35 +00:00
|
|
|
#ifndef __DECLSPEC_H__
|
|
|
|
#define __DECLSPEC_H__
|
|
|
|
|
2012-01-21 13:38:38 +00:00
|
|
|
#if defined(_WIN32) && !defined(STATICLIB)
|
2011-09-27 20:25:35 +00:00
|
|
|
#ifdef MINIUPNP_EXPORTS
|
|
|
|
#define LIBSPEC __declspec(dllexport)
|
|
|
|
#else
|
|
|
|
#define LIBSPEC __declspec(dllimport)
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define LIBSPEC
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|