Пример #1
0
        public int inflateEnd()
        {
            if (istate == null)
            {
                return(Z_STREAM_ERROR);
            }
            int ret = istate.inflateEnd(this);

            istate = null;
            return(ret);
        }
Пример #2
0
 public int inflateInit(int w, bool nowrap)
 {
     istate = new Inflate();
     return(istate.inflateInit(this, nowrap?-w:w));
 }
Пример #3
0
 public int inflateInit(int w, bool nowrap)
 {
     istate = new Inflate();
     return istate.inflateInit(this, nowrap?- w:w);
 }
Пример #4
0
 public int inflateEnd()
 {
     if (istate == null)
         return Z_STREAM_ERROR;
     int ret = istate.inflateEnd(this);
     istate = null;
     return ret;
 }