/thirdparty/libportfwd/third-party/miniupnpc-1.6/declspec.h
http://github.com/tomahawk-player/tomahawk · C Header · 15 lines · 12 code · 3 blank · 0 comment · 1 complexity · 52b7f18e11b225bd8005dbe476fb70d6 MD5 · raw file
- #ifndef __DECLSPEC_H__
- #define __DECLSPEC_H__
- #if defined(WIN32) && !defined(STATICLIB)
- #ifdef MINIUPNP_EXPORTS
- #define LIBSPEC __declspec(dllexport)
- #else
- #define LIBSPEC __declspec(dllimport)
- #endif
- #else
- #define LIBSPEC
- #endif
- #endif