deflate() private méthode

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