aboutsummaryrefslogtreecommitdiff
path: root/src/nat/libnatpmp/declspec.h
blob: 6c817977ae2ddd444ab8484cb91a3e4e0208aa53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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