Changeset 47516 in vbox for trunk/include/iprt
- Timestamp:
- Aug 1, 2013 6:33:39 PM (11 years ago)
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mangling.h
r47500 r47516 1861 1861 # define RTZipDecompDestroy RT_MANGLER(RTZipDecompDestroy) 1862 1862 # define RTZipDecompress RT_MANGLER(RTZipDecompress) 1863 # define RTZipGzipFileBufferDecompress RT_MANGLER(RTZipGzipFileBufferDecompress)1864 1863 # define RTZipGzipCompressIoStream RT_MANGLER(RTZipGzipCompressIoStream) 1865 1864 # define RTZipGzipDecompressIoStream RT_MANGLER(RTZipGzipDecompressIoStream) 1866 1865 # define RTZipTarCmd RT_MANGLER(RTZipTarCmd) 1867 1866 # define RTZipTarFsStreamFromIoStream RT_MANGLER(RTZipTarFsStreamFromIoStream) 1868 1869 1867 /* 1870 1868 * Stable variables (alphabetical order): -
trunk/include/iprt/zip.h
r47500 r47516 170 170 171 171 /** 172 * Decompresses a chunk of Gzip file.173 *174 * @returns iprt status code.175 * @param pZip The stream decompressor instance.176 * @param pvBufIn Where to read the compressed data from.177 * @param cbBufIn Number of bytes to read.178 * @param pcbRead Number of bytes actually read from the179 * buffer180 * @param pvBufOut Where to store the decompressed data.181 * @param cbBufOut Number of bytes to produce.182 * @param pcbWritten Number of bytes actually written to the183 * buffer.184 */185 RTDECL(int) RTZipGzipFileBufferDecompress(PRTZIPDECOMP pZip,186 void *pvBufIn,187 size_t cbBufIn,188 size_t *pcbRead,189 void *pvBufOut,190 size_t cbBufOut,191 size_t *pcbWritten);192 193 /**194 172 * Destroys the stream decompressor instance. 195 173 *
Note:
See TracChangeset
for help on using the changeset viewer.