deflate() 개인적인 메소드

private deflate ( ZStream strm, int flush ) : int
strm ZStream
flush int
리턴 int
예제 #1
0
파일: ZStream.cs 프로젝트: ulffi/plugins
 public int deflate(int flush)
 {
     if (dstate == null)
     {
         return(Z_STREAM_ERROR);
     }
     return(dstate.deflate(this, flush));
 }
예제 #2
0
 public int deflate(int flush)
 {
     if (dstate == null)
     {
         return(-2);
     }
     return(dstate.deflate(this, flush));
 }