aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/Pl_Buffer.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_Buffer.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_Buffer.cc')
-rw-r--r--libqpdf/Pl_Buffer.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/libqpdf/Pl_Buffer.cc b/libqpdf/Pl_Buffer.cc
index 27e1004e..25aff218 100644
--- a/libqpdf/Pl_Buffer.cc
+++ b/libqpdf/Pl_Buffer.cc
@@ -4,6 +4,7 @@
#include <assert.h>
#include <string.h>
+DLL_EXPORT
Pl_Buffer::Pl_Buffer(char const* identifier, Pipeline* next) :
Pipeline(identifier, next),
ready(false),
@@ -11,10 +12,12 @@ Pl_Buffer::Pl_Buffer(char const* identifier, Pipeline* next) :
{
}
+DLL_EXPORT
Pl_Buffer::~Pl_Buffer()
{
}
+DLL_EXPORT
void
Pl_Buffer::write(unsigned char* buf, int len)
{
@@ -30,6 +33,7 @@ Pl_Buffer::write(unsigned char* buf, int len)
}
}
+DLL_EXPORT
void
Pl_Buffer::finish()
{
@@ -40,6 +44,7 @@ Pl_Buffer::finish()
}
}
+DLL_EXPORT
Buffer*
Pl_Buffer::getBuffer()
{