public int InflateEnd()
        {
            if (istate == null)
            {
                return(Z_STREAM_ERROR);
            }
            int ret = istate.InflateEnd(this);

            istate = null;
            return(ret);
        }
Esempio n. 2
0
		public int InflateEnd()
		{
			if (istate == null)
			{
				return Z_STREAM_ERROR;
			}
			int ret = istate.InflateEnd(this);
			istate = null;
			return ret;
		}
Esempio n. 3
0
		public int InflateInit(int w, bool nowrap)
		{
			istate = new NSch.ZLib.Inflate();
			return istate.InflateInit(this, nowrap ? -w : w);
		}
 public int InflateInit(int w, bool nowrap)
 {
     istate = new NSch.ZLib.Inflate();
     return(istate.InflateInit(this, nowrap ? -w : w));
 }