public int deflate(int flush) { if (dstate == null) { return(-2); } return(dstate.deflate(this, flush)); }
public int deflate(int flush) { if (dstate == null) { return(Z_STREAM_ERROR); } return(dstate.deflate(this, flush)); }
public ZLibStatus deflate(FlushType flush) { if (dstate == null) { return(ZLibStatus.Z_STREAM_ERROR); } return(dstate.deflate(this, flush)); }