Searched defs:fZlibHeader (Results 1 - 1 of 1) sorted by relevance
/vbox/src/VBox/Runtime/common/zip/ |
H A D | zip.cpp | 557 * @param fZlibHeader If true, write the Zlib header. 559 static DECLCALLBACK(int) rtZipZlibCompInit(PRTZIPCOMP pZip, RTZIPLEVEL enmLevel, bool fZlibHeader) argument 579 int rc = deflateInit2(&pZip->u.Zlib, iLevel, Z_DEFLATED, fZlibHeader ? Z_DEF_WBITS : -Z_DEF_WBITS, 652 * @param fZlibHeader If true, expect the Zlib header. 654 static DECLCALLBACK(int) rtZipZlibDecompInit(PRTZIPDECOMP pZip, bool fZlibHeader) argument 662 int rc = inflateInit2(&pZip->u.Zlib, fZlibHeader ? Z_DEF_WBITS : -Z_DEF_WBITS); 1425 rc = rtZipZlibCompInit(pZip, enmLevel, enmType == RTZIPTYPE_ZLIB /*fZlibHeader*/);
|
Completed in 66 milliseconds