aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/Pl_AES_PDF.hh
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2009-10-21 03:45:13 +0200
committerJay Berkenbilt <ejb@ql.org>2009-10-21 03:45:13 +0200
commit27ee889c0e74e84035c2c208c856729a16d866c7 (patch)
tree4a9562232e327ff2a9d18f947121ea6895d3b38b /libqpdf/qpdf/Pl_AES_PDF.hh
parent95753c6b534d22951e254f221802ba09d6d71077 (diff)
downloadqpdf-27ee889c0e74e84035c2c208c856729a16d866c7.tar.zst
tweak dll stuff again
git-svn-id: svn+q:///qpdf/trunk@851 71b93d88-0707-0410-a8cf-f5a4172ac649
Diffstat (limited to 'libqpdf/qpdf/Pl_AES_PDF.hh')
-rw-r--r--libqpdf/qpdf/Pl_AES_PDF.hh12
1 files changed, 6 insertions, 6 deletions
diff --git a/libqpdf/qpdf/Pl_AES_PDF.hh b/libqpdf/qpdf/Pl_AES_PDF.hh
index e062057b..4f422d35 100644
--- a/libqpdf/qpdf/Pl_AES_PDF.hh
+++ b/libqpdf/qpdf/Pl_AES_PDF.hh
@@ -12,22 +12,22 @@ class Pl_AES_PDF: public Pipeline
public:
// key_data should be a pointer to key_size bytes of data
static unsigned int const key_size = 16;
- DLL_EXPORT
+ QPDF_DLL
Pl_AES_PDF(char const* identifier, Pipeline* next,
bool encrypt, unsigned char const key[key_size]);
- DLL_EXPORT
+ QPDF_DLL
virtual ~Pl_AES_PDF();
- DLL_EXPORT
+ QPDF_DLL
virtual void write(unsigned char* data, int len);
- DLL_EXPORT
+ QPDF_DLL
virtual void finish();
// For testing only; PDF always uses CBC
- DLL_EXPORT
+ QPDF_DLL
void disableCBC();
// For testing only: use a fixed initialization vector for CBC
- DLL_EXPORT
+ QPDF_DLL
static void useStaticIV();
private: