2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-09-29 05:29:06 +00:00
qpdf/include/qpdf/DLL.h

11 lines
168 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__ */