diff options
-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); |