summaryrefslogtreecommitdiff
path: root/package/inc
diff options
context:
space:
mode:
authorMartin Gallwey <mtg@openoffice.org>2000-11-16 21:52:06 +0000
committerMartin Gallwey <mtg@openoffice.org>2000-11-16 21:52:06 +0000
commit327892f41e9806c7184b5c5fd26a6f17154623df (patch)
tree9738c200e48500eb037366dd4197181eb16458dd /package/inc
parentfbcd68a4c48ce5da50719b7daeffa895c36ed0cf (diff)
Updated header files for new buffering...
Diffstat (limited to 'package/inc')
-rw-r--r--package/inc/Deflater.hxx16
-rw-r--r--package/inc/Inflater.hxx8
2 files changed, 12 insertions, 12 deletions
diff --git a/package/inc/Deflater.hxx b/package/inc/Deflater.hxx
index 57856d908108..84bd07e87a93 100644
--- a/package/inc/Deflater.hxx
+++ b/package/inc/Deflater.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: Deflater.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: mtg $ $Date: 2000-11-13 13:37:57 $
+ * last change: $Author: mtg $ $Date: 2000-11-16 22:52:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -84,18 +84,18 @@ private:
sal_Bool bFinish;
sal_Bool bFinished;
sal_Bool bSetParams;
- sal_Int16 nLevel, nStrategy;
- sal_Int16 nOffset, nLength;
+ sal_Int32 nLevel, nStrategy;
+ sal_Int32 nOffset, nLength;
z_stream* pStream;
- void init (sal_Int16 nLevel, sal_Int16 nStrategy, sal_Bool bNowrap);
- sal_Int16 doDeflateBytes (com::sun::star::uno::Sequence < sal_Int8 > &rBuffer, sal_Int16 nNewOffset, sal_Int16 nNewLength);
+ void init (sal_Int32 nLevel, sal_Int32 nStrategy, sal_Bool bNowrap);
+ sal_Int32 doDeflateBytes (com::sun::star::uno::Sequence < sal_Int8 > &rBuffer, sal_Int32 nNewOffset, sal_Int32 nNewLength);
public:
Deflater();
~Deflater();
- Deflater(sal_Int16 nSetLevel);
- Deflater(sal_Int16 nSetLevel, sal_Bool bNowrap);
+ Deflater(sal_Int32 nSetLevel);
+ Deflater(sal_Int32 nSetLevel, sal_Bool bNowrap);
virtual void SAL_CALL setInputSegment( const ::com::sun::star::uno::Sequence< sal_Int8 >& rBuffer, sal_Int32 nNewOffset, sal_Int32 nNewLength )
throw(::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL setInput( const ::com::sun::star::uno::Sequence< sal_Int8 >& rBuffer )
diff --git a/package/inc/Inflater.hxx b/package/inc/Inflater.hxx
index af1f3fdea81b..e848cefc8c1b 100644
--- a/package/inc/Inflater.hxx
+++ b/package/inc/Inflater.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: Inflater.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: mtg $ $Date: 2000-11-13 13:37:57 $
+ * last change: $Author: mtg $ $Date: 2000-11-16 22:52:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -89,11 +89,11 @@ private:
sal_Bool bFinished;
sal_Bool bSetParams;
sal_Bool bNeedDict;
- sal_Int16 nOffset, nLength;
+ sal_Int32 nOffset, nLength;
z_stream* pStream;
com::sun::star::uno::Sequence < sal_Int8 > sInBuffer;
void init (sal_Bool bNowrap);
- sal_Int16 doInflateBytes (com::sun::star::uno::Sequence < sal_Int8 > &rBuffer, sal_Int16 nNewOffset, sal_Int16 nNewLength);
+ sal_Int32 doInflateBytes (com::sun::star::uno::Sequence < sal_Int8 > &rBuffer, sal_Int32 nNewOffset, sal_Int32 nNewLength);
public:
Inflater(sal_Bool bNoWrap);