2007-11-06 16:02:50 +00:00
|
|
|
#ifndef __DECLSPEC_H__
|
|
|
|
#define __DECLSPEC_H__
|
|
|
|
|
2012-03-21 02:25:11 +00:00
|
|
|
#if defined(_WIN32) && !defined(STATICLIB)
|
2007-11-06 16:02:50 +00:00
|
|
|
#ifdef MINIUPNP_EXPORTS
|
|
|
|
#define LIBSPEC __declspec(dllexport)
|
|
|
|
#else
|
|
|
|
#define LIBSPEC __declspec(dllimport)
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define LIBSPEC
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|