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

            this.istate = null;
            return(num);
        }
Example #2
0
 public int inflateInit(int w)
 {
     this.istate = new Inflate();
     return(this.istate.inflateInit(this, w));
 }
Example #3
0
		public int inflateInit(int w) {
			this.istate = new Inflate();
			return this.istate.inflateInit(this, w);
		}
Example #4
0
		public int inflateEnd() {
			if (this.istate == null) {
				return -2;
			}
			int num = this.istate.inflateEnd(this);
			this.istate = null;
			return num;
		}