mirror of
https://github.com/monero-project/monero.git
synced 2025-09-27 21:50:55 -04:00
Port mapping with UPnP
This commit is contained in:
parent
a401a02ddb
commit
9682a15400
90 changed files with 10630 additions and 24 deletions
21
external/miniupnpc/declspec.h
vendored
Executable file
21
external/miniupnpc/declspec.h
vendored
Executable file
|
@ -0,0 +1,21 @@
|
|||
#ifndef DECLSPEC_H_INCLUDED
|
||||
#define DECLSPEC_H_INCLUDED
|
||||
|
||||
#if defined(_WIN32) && !defined(STATICLIB)
|
||||
/* for windows dll */
|
||||
#ifdef MINIUPNP_EXPORTS
|
||||
#define LIBSPEC __declspec(dllexport)
|
||||
#else
|
||||
#define LIBSPEC __declspec(dllimport)
|
||||
#endif
|
||||
#else
|
||||
#if defined(__GNUC__) && __GNUC__ >= 4
|
||||
/* fix dynlib for OS X 10.9.2 and Apple LLVM version 5.0 */
|
||||
#define LIBSPEC __attribute__ ((visibility ("default")))
|
||||
#else
|
||||
#define LIBSPEC
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue