You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
335 B

using System;
namespace LZ4Sharp
{
public interface ILZ4Compressor
{
int CalculateMaxCompressedLength(int uncompressedLength);
byte[] Compress(byte[] source);
int Compress(byte[] source, byte[] dest);
int Compress(byte[] source, int srcOffset, int count, byte[] dest, int dstOffset);
}
}