2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-05-29 08:20:53 +00:00

add DLL.hh created 2009-08-06 12:32

git-svn-id: svn+q:///qpdf/trunk@691 71b93d88-0707-0410-a8cf-f5a4172ac649
This commit is contained in:
Jay Berkenbilt 2009-09-26 13:51:45 +00:00
parent 0ded90eff9
commit e2d7dd3c76

10
include/qpdf/DLL.hh Normal file
View File

@ -0,0 +1,10 @@
#ifndef __QPDF_DLL_HH__
#define __QPDF_DLL_HH__
#ifdef _WIN32
# define DLL_EXPORT __declspec(dllexport)
#else
# define DLL_EXPORT
#endif
#endif // __QPDF_DLL_HH__