ComponentAce.Compression.Libs.zlib.ZStream.inflateEnd C# (CSharp) Method

inflateEnd() public method

public inflateEnd ( ) : int
return int
        public int inflateEnd()
        {
            if (istate == null)
                return Z_STREAM_ERROR;
            int ret = istate.inflateEnd(this);
            istate = null;
            return ret;
        }

Usage Example

示例#1
0
 public virtual void  end()
 {
     if (compress)
     {
         z.deflateEnd();
     }
     else
     {
         z.inflateEnd();
     }
     z.free();
     z = null;
 }
All Usage Examples Of ComponentAce.Compression.Libs.zlib.ZStream::inflateEnd