aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/BitStream.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/BitStream.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/BitStream.cc')
-rw-r--r--libqpdf/BitStream.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/libqpdf/BitStream.cc b/libqpdf/BitStream.cc
index c6fda4e6..e5558655 100644
--- a/libqpdf/BitStream.cc
+++ b/libqpdf/BitStream.cc
@@ -6,6 +6,7 @@
#define BITS_READ 1
#include "bits.icc"
+DLL_EXPORT
BitStream::BitStream(unsigned char const* p, int nbytes) :
start(p),
nbytes(nbytes)
@@ -13,6 +14,7 @@ BitStream::BitStream(unsigned char const* p, int nbytes) :
reset();
}
+DLL_EXPORT
void
BitStream::reset()
{
@@ -21,6 +23,7 @@ BitStream::reset()
bits_available = 8 * nbytes;
}
+DLL_EXPORT
unsigned long
BitStream::getBits(int nbits)
{
@@ -28,6 +31,7 @@ BitStream::getBits(int nbits)
this->bits_available, nbits);
}
+DLL_EXPORT
void
BitStream::skipToNextByte()
{