Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Inflate() [1/4]

unsafe int System.IO.Compression.Inflater.Inflate ( byte[] bytes,
int offset,
int length )
inline

Definition at line 50 of file Inflater.cs.

51 {
52 if (length == 0)
53 {
54 return 0;
55 }
56 fixed (byte* ptr = bytes)
57 {
58 return InflateVerified(ptr + offset, length);
59 }
60 }
unsafe int InflateVerified(byte *bufPtr, int length)
Definition Inflater.cs:74

References System.bytes, System.IO.Compression.Inflater.InflateVerified(), System.length, and System.offset.