- Timestamp:
- Feb 3, 2023 10:56:48 AM (2 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/zip.h
r98457 r98458 253 253 254 254 /** 255 * Opens a xz decompression I/O stream. 256 * 257 * @returns IPRT status code. 258 * 259 * @param hVfsIosIn The compressed input stream (must be readable). 260 * The reference is not consumed, instead another 261 * one is retained. 262 * @param fFlags Flags, MBZ. 263 * @param phVfsIosGunzip Where to return the handle to the gunzipped I/O 264 * stream (read). 265 */ 266 RTDECL(int) RTZipXzDecompressIoStream(RTVFSIOSTREAM hVfsIosIn, uint32_t fFlags, PRTVFSIOSTREAM phVfsIosGunzip); 267 268 269 /** 255 270 * Opens a gzip decompression I/O stream. 256 271 * … … 266 281 */ 267 282 RTDECL(int) RTZipGzipCompressIoStream(RTVFSIOSTREAM hVfsIosDst, uint32_t fFlags, uint8_t uLevel, PRTVFSIOSTREAM phVfsIosGzip); 283 284 285 /** 286 * Opens a xz decompression I/O stream. 287 * 288 * @returns IPRT status code. 289 * 290 * @param hVfsIosDst The compressed output stream (must be writable). 291 * The reference is not consumed, instead another 292 * one is retained. 293 * @param fFlags Flags, MBZ. 294 * @param uLevel The xz compression level, 1 thru 9. 295 * @param phVfsIosGzip Where to return the xz input I/O stream handle 296 * (you write to this). 297 */ 298 RTDECL(int) RTZipXzCompressIoStream(RTVFSIOSTREAM hVfsIosDst, uint32_t fFlags, uint8_t uLevel, PRTVFSIOSTREAM phVfsIosXz); 299 268 300 269 301 /** -
trunk/src/VBox/Runtime/common/zip/tarvfswriter.cpp
r98457 r98458 645 645 * File path size including the terminator. 646 646 */ 647 rtZipTarFssWriter_CpioFmtU32(pThis->Cpio.Hdr.AsciiNew.achNameSize, cchPath);647 rtZipTarFssWriter_CpioFmtU32(pThis->Cpio.Hdr.AsciiNew.achNameSize, (uint32_t)cchPath); 648 648 649 649 pThis->cHdrs = 1;
Note:
See TracChangeset
for help on using the changeset viewer.