RICOH Camera USB SDK for C++  1.1.0
RICOH Camera USB SDK for C++
export.hpp
Go to the documentation of this file.
1 // Copyright (c) 2017 Ricoh Company, Ltd. All Rights Reserved.
2 #ifndef RICOH_CAMERA_SDK_EXPORT_HPP_
3 #define RICOH_CAMERA_SDK_EXPORT_HPP_
4 
5 #ifdef _WIN32
6 #ifndef _NOT_USE_DLL
7 #pragma warning(disable:4251)
8 #ifdef WINDLL_EXPORTS
9 #define RCSDK_API __declspec(dllexport)
10 #else // WINDLL_EXPORTS
11 #define RCSDK_API __declspec(dllimport)
12 #endif
13 #else // _NOT_USE_DLL
14 #define RCSDK_API
15 #endif
16 #else // _WIN32
17 #define RCSDK_API
18 #endif
19 
20 #endif // RICOH_CAMERA_SDK_EXPORT_HPP_