| 1234567891011121314151617181920 |
- #ifndef __DECLSPEC_H__
- #define __DECLSPEC_H__
- // KevinJ: Use RakNet's more sophisticated export
- #include "Export.h"
- #define LIBSPEC RAK_DLL_EXPORT
- /*
- #if defined(WIN32) && !defined(STATICLIB)
- #ifdef MINIUPNP_EXPORTS
- #define LIBSPEC __declspec(dllexport)
- #else
- #define LIBSPEC __declspec(dllimport)
- #endif
- #else
- #define LIBSPEC
- #endif
- */
- #endif
|