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 Inflate(); return(istate.inflateInit(this, nowrap?-w:w)); }