deflate() private method

private deflate ( ZStream strm, int flush ) : int
strm ZStream
flush int
return int
Beispiel #1
0
 public int deflate(int flush)
 {
     if (dstate == null)
     {
         return(Z_STREAM_ERROR);
     }
     return(dstate.deflate(this, flush));
 }
Beispiel #2
0
 public int deflate(int flush)
 {
     if (dstate == null)
     {
         return(-2);
     }
     return(dstate.deflate(this, flush));
 }