예제 #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)
 {
     this.istate = new Inflate();
     return(this.istate.inflateInit(this, w));
 }
예제 #3
0
파일: ZStream.cs 프로젝트: GodLesZ/svn-dump
		public int inflateInit(int w) {
			this.istate = new Inflate();
			return this.istate.inflateInit(this, w);
		}
예제 #4
0
파일: ZStream.cs 프로젝트: GodLesZ/svn-dump
		public int inflateEnd() {
			if (this.istate == null) {
				return -2;
			}
			int num = this.istate.inflateEnd(this);
			this.istate = null;
			return num;
		}