C# 클래스 DSDecmp.Formats.Nitro.NullCompression

'Compression' format without any compression whatsoever. Compression using this format will only prepend 0x00 plus the original file size to the file.
상속: DSDecmp.Formats.Nitro.NitroCFormat
파일 보기 프로젝트 열기: SciresM/FEAT

공개 메소드들

메소드 설명
Compress ( System instream, long inLength, System outstream ) : int

'Compresses' the given input stream using the NULL format.

Decompress ( System instream, long inLength, System outstream ) : long

'Decompresses' the given input stream using the NULL format.

NullCompression ( ) : System

Creates a new instance of the NULL-compression format.

Supports ( System stream, long inLength ) : bool

Checks if the given stream is (or could be) 'compressed' using the NULL compression format.

메소드 상세

Compress() 공개 메소드

'Compresses' the given input stream using the NULL format.
public Compress ( System instream, long inLength, System outstream ) : int
instream System
inLength long
outstream System
리턴 int

Decompress() 공개 메소드

'Decompresses' the given input stream using the NULL format.
public Decompress ( System instream, long inLength, System outstream ) : long
instream System
inLength long
outstream System
리턴 long

NullCompression() 공개 메소드

Creates a new instance of the NULL-compression format.
public NullCompression ( ) : System
리턴 System

Supports() 공개 메소드

Checks if the given stream is (or could be) 'compressed' using the NULL compression format.
public Supports ( System stream, long inLength ) : bool
stream System
inLength long
리턴 bool