ultimatepp/uppsrc/plugin/bz2/bz2.h
cxl 6ab0137c2f uppsrc: Gate1/2 replaced with Gate
git-svn-id: svn://ultimatepp.org/upp/trunk@10656 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2017-01-06 14:22:57 +00:00

14 lines
476 B
C++

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