2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-09-29 13:39:04 +00:00
qpdf/include/qpdf/DLL.h
Jay Berkenbilt b67a3c15e7 DLL.hh -> DLL.h, move public enumerated types into Constants.h and use them both for C and C++ interfaces
git-svn-id: svn+q:///qpdf/trunk@828 71b93d88-0707-0410-a8cf-f5a4172ac649
2009-10-19 20:17:14 +00:00

11 lines
168 B
C

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