2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-10 06:02:27 +00:00
qpdf/include/qpdf/DLL.hh

11 lines
165 B
C++
Raw Normal View History

#ifndef __QPDF_DLL_HH__
#define __QPDF_DLL_HH__
#ifdef _WIN32
# define DLL_EXPORT __declspec(dllexport)
#else
# define DLL_EXPORT
#endif
#endif // __QPDF_DLL_HH__