athena/include/LZ77/LZType11.hpp

17 lines
425 B
C++
Raw Normal View History

2014-09-09 16:36:29 +00:00
#ifndef LZTYPE11_HPP
#define LZTYPE11_HPP
#include "LZBase.hpp"
2015-05-19 03:24:56 +00:00
class LZType11 : public LZBase
{
2014-09-09 16:36:29 +00:00
public:
2015-05-19 03:24:56 +00:00
explicit LZType11(atInt32 MinimumOffset = 1, atInt32 SlidingWindow = 4096, atInt32 MinimumMatch = 3, atInt32 BlockSize = 8);
atUint32 compress(const atUint8* src, atUint8** dest, atUint32 srcLength);
atUint32 decompress(const atUint8* src, atUint8** dest, atUint32 srcLength);
2014-09-09 16:36:29 +00:00
};
#endif // LZTYPE11_HPP