declspec.h 355 B

1234567891011121314151617181920
  1. #ifndef __DECLSPEC_H__
  2. #define __DECLSPEC_H__
  3. // KevinJ: Use RakNet's more sophisticated export
  4. #include "Export.h"
  5. #define LIBSPEC RAK_DLL_EXPORT
  6. /*
  7. #if defined(WIN32) && !defined(STATICLIB)
  8. #ifdef MINIUPNP_EXPORTS
  9. #define LIBSPEC __declspec(dllexport)
  10. #else
  11. #define LIBSPEC __declspec(dllimport)
  12. #endif
  13. #else
  14. #define LIBSPEC
  15. #endif
  16. */
  17. #endif
粤ICP备19079148号