aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/Pl_LZWDecoder.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_LZWDecoder.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_LZWDecoder.cc')
-rw-r--r--libqpdf/Pl_LZWDecoder.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/libqpdf/Pl_LZWDecoder.cc b/libqpdf/Pl_LZWDecoder.cc
index f4bf3012..050998d6 100644
--- a/libqpdf/Pl_LZWDecoder.cc
+++ b/libqpdf/Pl_LZWDecoder.cc
@@ -5,6 +5,7 @@
#include <string.h>
#include <assert.h>
+DLL_EXPORT
Pl_LZWDecoder::Pl_LZWDecoder(char const* identifier, Pipeline* next,
bool early_code_change) :
Pipeline(identifier, next),
@@ -20,11 +21,12 @@ Pl_LZWDecoder::Pl_LZWDecoder(char const* identifier, Pipeline* next,
memset(buf, 0, 3);
}
-
+DLL_EXPORT
Pl_LZWDecoder::~Pl_LZWDecoder()
{
}
+DLL_EXPORT
void
Pl_LZWDecoder::write(unsigned char* bytes, int len)
{
@@ -43,6 +45,7 @@ Pl_LZWDecoder::write(unsigned char* bytes, int len)
}
}
+DLL_EXPORT
void
Pl_LZWDecoder::finish()
{