Changeset 98732 in vbox for trunk/include
- Timestamp:
- Feb 25, 2023 6:26:14 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 156037
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mangling.h
r98103 r98732 3038 3038 # define RTZipTarFsStreamForFile RT_MANGLER(RTZipTarFsStreamForFile) 3039 3039 # define RTZipCpioFsStreamFromIoStream RT_MANGLER(RTZipCpioFsStreamFromIoStream) 3040 # define RTZipXzCompressIoStream RT_MANGLER(RTZipXzCompressIoStream) 3041 # define RTZipXzDecompressIoStream RT_MANGLER(RTZipXzDecompressIoStream) 3040 3042 3041 3043 /* sort/merge into the above later: */ -
trunk/include/iprt/zip.h
r98463 r98732 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 phVfsIosXz Where to return the handle to the decompressed I/O 264 * stream (read). 265 */ 266 RTDECL(int) RTZipXzDecompressIoStream(RTVFSIOSTREAM hVfsIosIn, uint32_t fFlags, PRTVFSIOSTREAM phVfsIosXz); 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 phVfsIosXz 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); 268 299 269 300
Note:
See TracChangeset
for help on using the changeset viewer.