mirror of
https://github.com/libAthena/athena.git
synced 2025-07-09 22:56:10 +00:00
15 lines
373 B
C++
15 lines
373 B
C++
#pragma once
|
|
|
|
|
|
#include "LZBase.hpp"
|
|
|
|
class LZType11 : public LZBase
|
|
{
|
|
public:
|
|
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);
|
|
|
|
};
|
|
|