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

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