mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-09-25 16:34:45 +00:00
10 lines
199 B
C#
10 lines
199 B
C#
namespace SharpCompress.Compressors.Arj
|
|
{
|
|
public interface ILhaDecoderConfig
|
|
{
|
|
int HistoryBits { get; }
|
|
int OffsetBits { get; }
|
|
RingBuffer RingBuffer { get; }
|
|
}
|
|
}
|