aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/Pl_ASCII85Decoder.cc
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2009-09-26 17:01:30 +0200
committerJay Berkenbilt <ejb@ql.org>2009-09-26 17:01:30 +0200
commitb6af616deaa1739a4cd1fba9f91e43c98ecb0b8a (patch)
tree9a8bc53153db1a65a0e86c59d2bbdd15162c6e02 /libqpdf/Pl_ASCII85Decoder.cc
parentd6f50e98c3711f741a255c7e97f973c3d34d8ec6 (diff)
downloadqpdf-b6af616deaa1739a4cd1fba9f91e43c98ecb0b8a.tar.zst
dll-export functions for library test suite
git-svn-id: svn+q:///qpdf/trunk@696 71b93d88-0707-0410-a8cf-f5a4172ac649
Diffstat (limited to 'libqpdf/Pl_ASCII85Decoder.cc')
-rw-r--r--libqpdf/Pl_ASCII85Decoder.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/libqpdf/Pl_ASCII85Decoder.cc b/libqpdf/Pl_ASCII85Decoder.cc
index 4ecdaf41..999ef0ae 100644
--- a/libqpdf/Pl_ASCII85Decoder.cc
+++ b/libqpdf/Pl_ASCII85Decoder.cc
@@ -3,6 +3,7 @@
#include <qpdf/QTC.hh>
#include <string.h>
+DLL_EXPORT
Pl_ASCII85Decoder::Pl_ASCII85Decoder(char const* identifier, Pipeline* next) :
Pipeline(identifier, next),
pos(0),
@@ -11,10 +12,12 @@ Pl_ASCII85Decoder::Pl_ASCII85Decoder(char const* identifier, Pipeline* next) :
memset(this->inbuf, 117, 5);
}
+DLL_EXPORT
Pl_ASCII85Decoder::~Pl_ASCII85Decoder()
{
}
+DLL_EXPORT
void
Pl_ASCII85Decoder::write(unsigned char* buf, int len)
{
@@ -123,6 +126,7 @@ Pl_ASCII85Decoder::flush()
memset(this->inbuf, 117, 5);
}
+DLL_EXPORT
void
Pl_ASCII85Decoder::finish()
{