2014-09-09 16:36:29 +00:00
|
|
|
#ifndef LZ77TYPE10_HPP
|
|
|
|
#define LZ77TYPE10_HPP
|
|
|
|
|
|
|
|
#include "LZBase.hpp"
|
|
|
|
|
|
|
|
class LZType10 : public LZBase {
|
|
|
|
public:
|
|
|
|
explicit LZType10(atInt32 minimumOffset=1, atInt32 SlidingWindow=4096, atInt32 MinimumMatch=3, atInt32 BlockSize=8);
|
2014-09-09 16:53:32 +00:00
|
|
|
atUint32 compress(const atUint8* src, atUint8** dest, atUint32 srcLength);
|
|
|
|
atUint32 decompress(const atUint8* src, atUint8** dst, atUint32 srcLen);
|
2014-09-09 16:36:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LZ77TYPE10_HPP
|