aboutsummaryrefslogtreecommitdiff
path: root/src/nat/miniupnp/declspec.h
blob: c064bded226529aea7eda55875034adabca1ff32 (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 MINIUPNP_EXPORTS
#define LIBSPEC __declspec(dllexport)
#else
#define LIBSPEC __declspec(dllimport)
#endif
#else
#define LIBSPEC
#endif

#endif