Changeset 85121 in vbox for trunk/src/VBox/Runtime/common/zip
- Timestamp:
- Jul 8, 2020 7:33:26 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/zip/zip.cpp
r82968 r85121 132 132 * @copydoc RTZipCompress 133 133 */ 134 DECLCALLBACKMEMBER(int, pfnCompress )(PRTZIPCOMP pZip, const void *pvBuf, size_t cbBuf);134 DECLCALLBACKMEMBER(int, pfnCompress,(PRTZIPCOMP pZip, const void *pvBuf, size_t cbBuf)); 135 135 136 136 /** 137 137 * @copydoc RTZipCompFinish 138 138 */ 139 DECLCALLBACKMEMBER(int, pfnFinish )(PRTZIPCOMP pZip);139 DECLCALLBACKMEMBER(int, pfnFinish,(PRTZIPCOMP pZip)); 140 140 141 141 /** 142 142 * @copydoc RTZipCompDestroy 143 143 */ 144 DECLCALLBACKMEMBER(int, pfnDestroy )(PRTZIPCOMP pZip);144 DECLCALLBACKMEMBER(int, pfnDestroy,(PRTZIPCOMP pZip)); 145 145 146 146 /** Compression type. */ … … 200 200 * @copydoc RTZipDecompress 201 201 */ 202 DECLCALLBACKMEMBER(int, pfnDecompress )(PRTZIPDECOMP pZip, void *pvBuf, size_t cbBuf, size_t *pcbWritten);202 DECLCALLBACKMEMBER(int, pfnDecompress,(PRTZIPDECOMP pZip, void *pvBuf, size_t cbBuf, size_t *pcbWritten)); 203 203 204 204 /** 205 205 * @copydoc RTZipDecompDestroy 206 206 */ 207 DECLCALLBACKMEMBER(int, pfnDestroy )(PRTZIPDECOMP pZip);207 DECLCALLBACKMEMBER(int, pfnDestroy,(PRTZIPDECOMP pZip)); 208 208 209 209 /** Compression type. */
Note:
See TracChangeset
for help on using the changeset viewer.