summaryrefslogtreecommitdiffstats
blob: f66b6d7cba5b410ae8741dc8653fe41910bcd117 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef DECLSPEC_H_INCLUDED
#define DECLSPEC_H_INCLUDED

#if defined(_WIN32) && !defined(STATICLIB)
	#ifdef MINIUPNP_EXPORTS
		#define LIBSPEC __declspec(dllexport)
	#else
		#define LIBSPEC __declspec(dllimport)
	#endif
#else
	#define LIBSPEC
#endif

#endif