2
0

declspec.h 248 B

123456789101112131415
  1. #ifndef __DECLSPEC_H__
  2. #define __DECLSPEC_H__
  3. #if defined(WIN32) && !defined(STATICLIB)
  4. #ifdef MINIUPNP_EXPORTS
  5. #define LIBSPEC __declspec(dllexport)
  6. #else
  7. #define LIBSPEC __declspec(dllimport)
  8. #endif
  9. #else
  10. #define LIBSPEC
  11. #endif
  12. #endif