Changeset 98463 in vbox for trunk/include/iprt
- Timestamp:
- Feb 3, 2023 11:32:27 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 155717
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/zip.h
r98458 r98463 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 another261 * one is retained.262 * @param fFlags Flags, MBZ.263 * @param phVfsIosGunzip Where to return the handle to the gunzipped I/O264 * stream (read).265 */266 RTDECL(int) RTZipXzDecompressIoStream(RTVFSIOSTREAM hVfsIosIn, uint32_t fFlags, PRTVFSIOSTREAM phVfsIosGunzip);267 268 269 /**270 255 * Opens a gzip decompression I/O stream. 271 256 * … … 281 266 */ 282 267 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 another292 * 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 handle296 * (you write to this).297 */298 RTDECL(int) RTZipXzCompressIoStream(RTVFSIOSTREAM hVfsIosDst, uint32_t fFlags, uint8_t uLevel, PRTVFSIOSTREAM phVfsIosXz);299 268 300 269
Note:
See TracChangeset
for help on using the changeset viewer.