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

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

#endif