public int InflateEnd() { if (istate == null) { return(Z_STREAM_ERROR); } int ret = istate.InflateEnd(this); istate = null; return(ret); }
public int InflateEnd() { if (istate == null) { return Z_STREAM_ERROR; } int ret = istate.InflateEnd(this); istate = null; return ret; }
public int InflateInit(int w, bool nowrap) { istate = new NSch.ZLib.Inflate(); return istate.InflateInit(this, nowrap ? -w : w); }
public int InflateInit(int w, bool nowrap) { istate = new NSch.ZLib.Inflate(); return(istate.InflateInit(this, nowrap ? -w : w)); }