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

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