aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/Pl_RC4.cc
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2009-09-26 17:15:33 +0200
committerJay Berkenbilt <ejb@ql.org>2009-09-26 17:15:33 +0200
commit492db82f6f698e5dcf7ff51dab5fccc79378906c (patch)
tree047aa914c8dbb05f321be09072f81a0334f29991 /libqpdf/Pl_RC4.cc
parentb6af616deaa1739a4cd1fba9f91e43c98ecb0b8a (diff)
downloadqpdf-492db82f6f698e5dcf7ff51dab5fccc79378906c.tar.zst
more dll exports
git-svn-id: svn+q:///qpdf/trunk@697 71b93d88-0707-0410-a8cf-f5a4172ac649
Diffstat (limited to 'libqpdf/Pl_RC4.cc')
-rw-r--r--libqpdf/Pl_RC4.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/libqpdf/Pl_RC4.cc b/libqpdf/Pl_RC4.cc
index 74e53c8b..e176511f 100644
--- a/libqpdf/Pl_RC4.cc
+++ b/libqpdf/Pl_RC4.cc
@@ -3,6 +3,7 @@
#include <qpdf/QUtil.hh>
+DLL_EXPORT
Pl_RC4::Pl_RC4(char const* identifier, Pipeline* next,
unsigned char const* key_data, int key_len,
int out_bufsize) :
@@ -13,6 +14,7 @@ Pl_RC4::Pl_RC4(char const* identifier, Pipeline* next,
this->outbuf = new unsigned char[out_bufsize];
}
+DLL_EXPORT
Pl_RC4::~Pl_RC4()
{
if (this->outbuf)
@@ -22,6 +24,7 @@ Pl_RC4::~Pl_RC4()
}
}
+DLL_EXPORT
void
Pl_RC4::write(unsigned char* data, int len)
{
@@ -45,6 +48,7 @@ Pl_RC4::write(unsigned char* data, int len)
}
}
+DLL_EXPORT
void
Pl_RC4::finish()
{