aboutsummaryrefslogtreecommitdiff
path: root/src/nat/miniupnp/declspec.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nat/miniupnp/declspec.h')
-rw-r--r--src/nat/miniupnp/declspec.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/nat/miniupnp/declspec.h b/src/nat/miniupnp/declspec.h
deleted file mode 100644
index c064bded2..000000000
--- a/src/nat/miniupnp/declspec.h
+++ /dev/null
@@ -1,14 +0,0 @@
1#ifndef __DECLSPEC_H__
2#define __DECLSPEC_H__
3
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
13
14#endif