jdk/src/share/native/java/util/zip/zlib-1.1.3/zlib.h
changeset 2438 21c111b51aa8
parent 2 90ce3da70b43
equal deleted inserted replaced
2436:ae4667371301 2438:21c111b51aa8
   104 struct internal_state;
   104 struct internal_state;
   105 
   105 
   106 typedef struct z_stream_s {
   106 typedef struct z_stream_s {
   107     Bytef    *next_in;  /* next input byte */
   107     Bytef    *next_in;  /* next input byte */
   108     uInt     avail_in;  /* number of bytes available at next_in */
   108     uInt     avail_in;  /* number of bytes available at next_in */
   109     uLong    total_in;  /* total nb of input bytes read so far */
   109     long long total_in;  /* total nb of input bytes read so far */
   110 
   110 
   111     Bytef    *next_out; /* next output byte should be put there */
   111     Bytef    *next_out; /* next output byte should be put there */
   112     uInt     avail_out; /* remaining free space at next_out */
   112     uInt     avail_out; /* remaining free space at next_out */
   113     uLong    total_out; /* total nb of bytes output so far */
   113     long long total_out; /* total nb of bytes output so far */
   114 
   114 
   115     char     *msg;      /* last error message, NULL if no error */
   115     char     *msg;      /* last error message, NULL if no error */
   116     struct internal_state FAR *state; /* not visible by applications */
   116     struct internal_state FAR *state; /* not visible by applications */
   117 
   117 
   118     alloc_func zalloc;  /* used to allocate the internal state */
   118     alloc_func zalloc;  /* used to allocate the internal state */