ultimatepp/uppsrc/plugin/bz2/bz2.h
cxl 8ebdcbb0d5 uppsrc: NAMESPACE_UPP / END_UPP_NAMESPACE removed
git-svn-id: svn://ultimatepp.org/upp/trunk@10186 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2016-08-26 17:15:30 +00:00

14 lines
486 B
C++

#ifndef __Plugin_BZ2__
#define __Plugin_BZ2__
namespace Upp {
String BZ2Compress(String s, Gate2<int, int> progress = false);
String BZ2Decompress(String s, Gate2<int, int> progress = false);
String BZ2Decompress(Stream& stream, Gate2<int, int> progress = false);
void BZ2Compress(Stream& out, Stream& in, Gate2<int, int> progress = false);
void BZ2Decompress(Stream& out, Stream& in, Gate2<int, int> progress = false);
}
#endif//__Plugin_Z__