diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2010-08-16 22:53:11 +0200 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2010-08-16 22:53:11 +0200 |
commit | bf10155cfb5109a251f5b1542755fea139c705a5 (patch) | |
tree | d46249859f8907f4457db889fed7ac78d533d128 /include/Handle.h | |
parent | ed5a1e2a7b8211b6cbc6e6801e1f018a13520598 (diff) |
Forgot to change the prototype.
Diffstat (limited to 'include/Handle.h')
-rw-r--r-- | include/Handle.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Handle.h b/include/Handle.h index 1aca644..6ce4060 100644 --- a/include/Handle.h +++ b/include/Handle.h @@ -79,7 +79,7 @@ class Handle : public Base { void munmap() throw (GeneralException); static int GetNbHandles(); - static int zlib_inflate(Handle * in, Handle * out) throw (GeneralException); + static int zlib_inflate(Handle * in, Handle * out, bool raw = false) throw (GeneralException); static int zlib_deflate(Handle * in, Handle * out, int level = Z_DEFAULT_COMPRESSION, bool raw = false, bool gzip = false) throw (GeneralException); #ifdef HAVE_UCL static int ucl_compress(Handle * in, Handle * out, int len_in = -1) throw (GeneralException); |