inflateEnd() public method

public inflateEnd ( ) : int
return int
コード例 #1
0
ファイル: ZOutputStream.cs プロジェクト: aata/flashcards-wp7
		public virtual void End()
		{
			if (z == null)
				return;
			if (compress)
				z.deflateEnd();
			else
				z.inflateEnd();
			z.free();
			z = null;
		}
コード例 #2
0
 public virtual void End()
 {
     if (z != null)
     {
         if (compress)
         {
             z.deflateEnd();
         }
         else
         {
             z.inflateEnd();
         }
         z.free();
         z = null;
     }
 }