transmission 2.51 update
[tomato.git] / release / src / router / transmission / third-party / miniupnp / declspec.h
blob2638faa61da59c4cae83a8884e3e28e5cf65ea82
1 #ifndef __DECLSPEC_H__
2 #define __DECLSPEC_H__
4 #if defined(_WIN32) && !defined(STATICLIB)
5 #ifdef MINIUPNP_EXPORTS
6 #define LIBSPEC __declspec(dllexport)
7 #else
8 #define LIBSPEC __declspec(dllimport)
9 #endif
10 #else
11 #define LIBSPEC
12 #endif
14 #endif