Changeset 47500 in vbox for trunk/include
- Timestamp:
- Aug 1, 2013 6:01:14 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 87679
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mangling.h
r47359 r47500 1861 1861 # define RTZipDecompDestroy RT_MANGLER(RTZipDecompDestroy) 1862 1862 # define RTZipDecompress RT_MANGLER(RTZipDecompress) 1863 # define RTZipGzipFileBufferDecompress RT_MANGLER(RTZipGzipFileBufferDecompress) 1863 1864 # define RTZipGzipCompressIoStream RT_MANGLER(RTZipGzipCompressIoStream) 1864 1865 # define RTZipGzipDecompressIoStream RT_MANGLER(RTZipGzipDecompressIoStream) 1865 1866 # define RTZipTarCmd RT_MANGLER(RTZipTarCmd) 1866 1867 # define RTZipTarFsStreamFromIoStream RT_MANGLER(RTZipTarFsStreamFromIoStream) 1868 1867 1869 /* 1868 1870 * Stable variables (alphabetical order): -
trunk/include/iprt/zip.h
r47359 r47500 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 the 179 * buffer 180 * @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 the 183 * 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 /** 172 194 * Destroys the stream decompressor instance. 173 195 *
Note:
See TracChangeset
for help on using the changeset viewer.