Example #1
0
 public int InflateInit(int w)
 {
     istate = new Inflate();
     return istate.inflateInit(this, w);
 }
Example #2
0
 public int InflateEnd()
 {
     if (istate == null)
         return Z_STREAM_ERROR;
     int ret = istate.inflateEnd(this);
     istate = null;
     return ret;
 }