/usr/include/OpenLayer/Declspec.hpp is in libopenlayer-dev 2.1-2.1+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #ifndef OL_DECLSPEC_HPP
#define OL_DECLSPEC_HPP
#if defined (_WIN32) && defined (OL_LIB_BUILD) && defined (OL_SHARED)
#define OL_LIB_DECLSPEC __declspec(dllexport)
#define OL_EXT_DECLSPEC __declspec(dllexport)
#elif defined (_WIN32) && defined (OL_SHARED)
#define OL_LIB_DECLSPEC __declspec(dllimport)
#define OL_EXT_DECLSPEC __declspec(dllimport)
#else
#define OL_LIB_DECLSPEC
#define OL_EXT_DECLSPEC
#endif
#endif // OL_DECLSPEC_HPP
|