summaryrefslogtreecommitdiff
path: root/include/Handle.h
diff options
context:
space:
mode:
authorpixel <pixel>2008-05-13 06:59:10 +0000
committerpixel <pixel>2008-05-13 06:59:10 +0000
commit8a1b1e91f6892cc51f7d18750a993c5fbcb321ca (patch)
tree15ed16593e1c9b3020546f6d706d2ad586df610a /include/Handle.h
parent00202d6c759746dd7ff768934521fc1ede20f144 (diff)
Adding basic inflate / deflate support.
Diffstat (limited to 'include/Handle.h')
-rw-r--r--include/Handle.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/Handle.h b/include/Handle.h
index 3ef9408..26c1eda 100644
--- a/include/Handle.h
+++ b/include/Handle.h
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Handle.h,v 1.38 2008-01-21 17:19:07 pixel Exp $ */
+/* $Id: Handle.h,v 1.39 2008-05-13 06:59:10 pixel Exp $ */
#ifndef __HANDLE_H__
#define __HANDLE_H__
@@ -67,6 +67,8 @@ class Handle : public Base {
void munmap() throw (GeneralException);
static int GetNbHandles();
+ static int zlib_inflate(Handle * in, Handle * out) throw (GeneralException);
+ static int zlib_deflate(Handle * in, Handle * out) throw (GeneralException);
protected:
Handle(int h);
int GetHandle() const;