inflate() 개인적인 메소드

private inflate ( ZStream z, int f ) : int
z ZStream
f int
리턴 int
예제 #1
0
 public int inflate(int f)
 {
     if (istate == null)
     {
         return(Z_STREAM_ERROR);
     }
     return(istate.inflate(this, f));
 }
예제 #2
0
 protected ZLibStatus inflate(FlushType f)
 {
     if (istate == null)
     {
         return(ZLibStatus.Z_STREAM_ERROR);
     }
     return(istate.inflate(this, f));
 }
예제 #3
0
 public int inflate(int f)
 {
     if (istate == null)
     {
         return(-2);
     }
     return(istate.inflate(this, f));
 }
예제 #4
0
 public int inflate(int f){
     if(istate==null) return Z_STREAM_ERROR;
     return istate.inflate(this, f);
 }