IO.Profile.BUS.Define.hpp 530 B

123456789101112131415161718192021222324252627282930313233
  1. #pragma once
  2. #ifndef _IO_Profile_BUS_EXPORTS
  3. #define _IO_Profile_BUS_API _declspec(dllimport)
  4. #else
  5. #define _IO_Profile_BUS_API _declspec(dllexport)
  6. #endif
  7. #ifndef _IO_Profile_BUS_EXPORTS
  8. #ifdef _WIN64
  9. #ifdef _DEBUG
  10. #pragma comment (lib, "ECOM.IO.Profile.BUS64D.lib")
  11. #else
  12. #pragma comment (lib, "ECOM.IO.Profile.BUS64.lib")
  13. #endif
  14. #else // X86
  15. #ifdef _DEBUG
  16. #pragma comment (lib, "ECOM.IO.Profile.BUSD.lib")
  17. #else
  18. #pragma comment (lib, "ECOM.IO.Profile.BUS.lib")
  19. #endif
  20. #endif
  21. #endif // _IO_Profile_BUS_EXPORTS