aboutsummaryrefslogtreecommitdiffstats
path: root/include/qpdf/DLL.h
blob: a2d863fb4889a03acf5a25c02e4e85a0263445a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* Copyright (c) 2005-2015 Jay Berkenbilt
 *
 * This file is part of qpdf.  This software may be distributed under
 * the terms of version 2 of the Artistic License which may be found
 * in the source distribution.  It is provided "as is" without express
 * or implied warranty.
 */

#ifndef __QPDF_DLL_HH__
#define __QPDF_DLL_HH__

#if defined(_WIN32) && defined(DLL_EXPORT)
# define QPDF_DLL __declspec(dllexport)
#else
# define QPDF_DLL
#endif

#endif /* __QPDF_DLL_HH__ */