C# 클래스 Mosa.Kernel.x86.LZF

Improved C# LZF Compressor, a very small data compression library. The compression algorithm is extremely fast.
파일 보기 프로젝트 열기: tgiphil/MOSA-Project 1 사용 예제들

공개 메소드들

메소드 설명
Decompress ( uint input, uint inputLength, uint output, uint outputLength ) : bool

Decompresses the data using LibLZF algorithm

메소드 상세

Decompress() 공개 정적인 메소드

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
리턴 bool