Subversion Repositories Kolibri OS

Rev

Rev 6617 | Rev 6673 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6617 Rev 6639
Line 210... Line 210...
210
;                      (int)sizeof(z_stream))
210
;                      (int)sizeof(z_stream))
211
;#define inflateBackInit(strm, windowBits, window) \
211
;#define inflateBackInit(strm, windowBits, window) \
212
;        inflateBackInit_((strm), (windowBits), (window), \
212
;        inflateBackInit_((strm), (windowBits), (window), \
213
;                      ZLIB_VERSION, (int)sizeof(z_stream))
213
;                      ZLIB_VERSION, (int)sizeof(z_stream))
Line 214... Line 214...
214
 
214
 
Line 215... Line 215...
215
;#ifndef Z_SOLO
215
if Z_SOLO eq 0
216
 
216
 
217
; gzgetc() macro and its supporting function and exposed data structure.  Note
217
; gzgetc() macro and its supporting function and exposed data structure.  Note
218
; that the real internal state is much larger than the exposed structure.
218
; that the real internal state is much larger than the exposed structure.
Line 232... Line 232...
232
;#  define z_gzgetc(g) \
232
;#  define z_gzgetc(g) \
233
;          ((g)->have ? ((g)->have--, (g)->pos++, *((g)->next)++) : gzgetc(g))
233
;          ((g)->have ? ((g)->have--, (g)->pos++, *((g)->next)++) : gzgetc(g))
234
;#else
234
;#else
235
;#  define gzgetc(g) \
235
;#  define gzgetc(g) \
236
;          ((g)->have ? ((g)->have--, (g)->pos++, *((g)->next)++) : gzgetc(g))
236
;          ((g)->have ? ((g)->have--, (g)->pos++, *((g)->next)++) : gzgetc(g))
237
;end if
237
end if
Line 238... Line 238...
238
 
238
 
239
; provide 64-bit offset functions if _LARGEFILE64_SOURCE defined, and/or
239
; provide 64-bit offset functions if _LARGEFILE64_SOURCE defined, and/or
240
; change the regular functions to 64 bits if _FILE_OFFSET_BITS is 64 (if
240
; change the regular functions to 64 bits if _FILE_OFFSET_BITS is 64 (if
241
; both are true, the application gets the *64 functions, and the regular
241
; both are true, the application gets the *64 functions, and the regular
Line 250... Line 250...
250
;int            inflateResetKeep OF((z_streamp));
250
;int            inflateResetKeep OF((z_streamp));
251
;#if defined(_WIN32) && !defined(Z_SOLO)
251
;#if defined(_WIN32) && !defined(Z_SOLO)
252
;gzFile         gzopen_w OF((const wchar_t *path,
252
;gzFile         gzopen_w OF((const wchar_t *path,
253
;                                            const char *mode));
253
;                                            const char *mode));
254
;end if
254
;end if
255
;#if defined(STDC) || defined(Z_HAVE_STDARG_H)
-
 
256
;#  ifndef Z_SOLO
-
 
257
;int            ZEXPORTVA gzvprintf Z_ARG((gzFile file,
-
 
258
;                                                  const char *format,
-
 
259
;                                                  va_list va));
-
 
260
;#  endif
-
 
261
;end if
-