123456789101112131415161718192021222324252627282930313233 |
- #pragma once
- #ifndef _IO_Profile_BUS_EXPORTS
- #define _IO_Profile_BUS_API _declspec(dllimport)
- #else
- #define _IO_Profile_BUS_API _declspec(dllexport)
- #endif
- #ifndef _IO_Profile_BUS_EXPORTS
- #ifdef _WIN64
- #ifdef _DEBUG
- #pragma comment (lib, "ECOM.IO.Profile.BUS64D.lib")
- #else
- #pragma comment (lib, "ECOM.IO.Profile.BUS64.lib")
- #endif
- #else // X86
- #ifdef _DEBUG
- #pragma comment (lib, "ECOM.IO.Profile.BUSD.lib")
- #else
- #pragma comment (lib, "ECOM.IO.Profile.BUS.lib")
- #endif
- #endif
- #endif // _IO_Profile_BUS_EXPORTS
|