Rebex.IO.Compression.Inflate.inflateEnd C# (CSharp) 메소드

inflateEnd() 개인적인 메소드

private inflateEnd ( ZStream z ) : int
z ZStream
리턴 int
        internal int inflateEnd(ZStream z)
        {
            if (blocks != null)
                blocks.free(z);
            blocks = null;
            //    ZFREE(z, z->state);
            return Z_OK;
        }