miniupnp/miniupnpc/declspec.h

16 lines
259 B
C
Raw Normal View History

#ifndef DECLSPEC_H_INCLUDED
#define DECLSPEC_H_INCLUDED
2011-09-27 20:25:35 +00:00
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