diff options
author | Pixel <pixel@nobis-crew.org> | 2009-04-30 13:47:27 -0700 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2009-04-30 13:47:27 -0700 |
commit | 1bd9d06b327531887f663d9c0222be6091ad65a9 (patch) | |
tree | ef60c568bd99a611622f571c61cbdd40f4f5cdc3 /include | |
parent | 7adc856d72fbe1fecc399cb462e108e8cc1d101a (diff) |
Adding UCL n2e compression support.
Diffstat (limited to 'include')
-rw-r--r-- | include/Handle.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/Handle.h b/include/Handle.h index 6697fdf..64b4243 100644 --- a/include/Handle.h +++ b/include/Handle.h @@ -71,6 +71,8 @@ class Handle : public Base { static int GetNbHandles(); static int zlib_inflate(Handle * in, Handle * out) throw (GeneralException); static int zlib_deflate(Handle * in, Handle * out) throw (GeneralException); + static int ucl_compress(Handle * in, Handle * out) throw (GeneralException); + static int ucl_decompress(Handle * in, Handle * out) throw (GeneralException); protected: Handle(int h); int GetHandle() const; |