C# Class Mosa.Kernel.x86.LZF

Improved C# LZF Compressor, a very small data compression library. The compression algorithm is extremely fast.
Datei anzeigen Open project: tgiphil/MOSA-Project Class Usage Examples

Public Methods

Method Description
Decompress ( uint input, uint inputLength, uint output, uint outputLength ) : bool

Decompresses the data using LibLZF algorithm

Method Details

Decompress() public static method

Decompresses the data using LibLZF algorithm
public static Decompress ( uint input, uint inputLength, uint output, uint outputLength ) : bool
input uint Reference to the data to decompress
inputLength uint Length of the data to decompress
output uint Reference to a buffer which will contain the decompressed data
outputLength uint The size of the decompressed archive in the output buffer
return bool