示例#1
0
        public int inflateEnd()
        {
            if (this.istate == null)
            {
                return(-2);
            }
            int num = this.istate.inflateEnd(this);

            this.istate = null;
            return(num);
        }
示例#2
0
 public int inflateInit(int w, bool nowrap)
 {
     this.istate = new Inflate();
     return(this.istate.inflateInit(this, nowrap ? -w : w));
 }