jdk/src/share/native/java/util/zip/zlib-1.2.3/patches/zlib.h.diff
changeset 11237 ff9cf1de21fa
parent 11236 0de47eef399c
parent 11235 3117d9a4bb02
child 11238 e2e56339976e
equal deleted inserted replaced
11236:0de47eef399c 11237:ff9cf1de21fa
     1 --- /home/sherman/TL/zlib-1.2.3_ORG/zlib.h	Sun Jul 17 19:26:49 2005
       
     2 +++ zlib.h	Tue Aug 25 14:22:50 2009
       
     3 @@ -82,11 +82,11 @@
       
     4  typedef struct z_stream_s {
       
     5      Bytef    *next_in;  /* next input byte */
       
     6      uInt     avail_in;  /* number of bytes available at next_in */
       
     7 -    uLong    total_in;  /* total nb of input bytes read so far */
       
     8 +    long long total_in; /* total nb of input bytes read so far */
       
     9  
       
    10      Bytef    *next_out; /* next output byte should be put there */
       
    11      uInt     avail_out; /* remaining free space at next_out */
       
    12 -    uLong    total_out; /* total nb of bytes output so far */
       
    13 +    long long total_out;/* total nb of bytes output so far */
       
    14  
       
    15      char     *msg;      /* last error message, NULL if no error */
       
    16      struct internal_state FAR *state; /* not visible by applications */
       
    17 @@ -1348,7 +1348,7 @@
       
    18  
       
    19  ZEXTERN const char   * ZEXPORT zError           OF((int));
       
    20  ZEXTERN int            ZEXPORT inflateSyncPoint OF((z_streamp z));
       
    21 -ZEXTERN const uLongf * ZEXPORT get_crc_table    OF((void));
       
    22 +ZEXTERN const unsigned long FAR * ZEXPORT get_crc_table    OF((void));
       
    23  
       
    24  #ifdef __cplusplus
       
    25  }