コード例 #1
0
ファイル: ZStream.cs プロジェクト: jakop345/NVNC
 public int inflateEnd()
 {
     if (istate == null)
         return Z_STREAM_ERROR;
     var ret = istate.inflateEnd(this);
     istate = null;
     return ret;
 }
コード例 #2
0
ファイル: ZStream.cs プロジェクト: chengcong/cocos2d-xna
		public int inflateEnd()
		{
			if (this.istate == null)
			{
				return -2;
			}
			int num = this.istate.inflateEnd(this);
			this.istate = null;
			return num;
		}
コード例 #3
0
ファイル: ZStream.cs プロジェクト: ulffi/plugins
        public int inflateEnd()
        {
            if (istate == null)
            {
                return(Z_STREAM_ERROR);
            }
            int ret = istate.inflateEnd(this);

            istate = null;
            return(ret);
        }
コード例 #4
0
ファイル: ZStream.cs プロジェクト: smdx24/CPI-Source-Code
        public int inflateEnd()
        {
            if (istate == null)
            {
                return(-2);
            }
            int result = istate.inflateEnd(this);

            istate = null;
            return(result);
        }
コード例 #5
0
ファイル: ZStream.cs プロジェクト: ulffi/plugins
 public int inflateInit(int w)
 {
     istate = new Inflate();
     return(istate.inflateInit(this, w));
 }
コード例 #6
0
ファイル: ZStream.cs プロジェクト: athikan/subtitleedit
		public int inflateInit(int w)
		{
			istate = new Inflate();
			return istate.inflateInit(this, w);
		}
コード例 #7
0
ファイル: ZStream.cs プロジェクト: chengcong/cocos2d-xna
		public int inflateInit(int w)
		{
			this.istate = new Inflate();
			return this.istate.inflateInit(this, w);
		}