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

            istate = null;
            return(ret);
        }
Example #2
0
 public int inflateInit(int w, bool nowrap)
 {
     istate=new Inflate();
     return istate.inflateInit(this, nowrap?-w:w);
 }
Example #3
0
 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));
 }