Changeset 100908 in vbox for trunk/src/VBox/Runtime/common/zip/pkzip.cpp
- Timestamp:
- Aug 19, 2023 2:57:05 AM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/zip/pkzip.cpp
r98103 r100908 99 99 * @interface_method_impl{RTVFSIOSTREAMOPS,pfnRead} 100 100 */ 101 static DECLCALLBACK(int) memFssIos_Read(void *pvThis, RTFOFF off, P CRTSGBUF pSgBuf, bool fBlocking, size_t *pcbRead)101 static DECLCALLBACK(int) memFssIos_Read(void *pvThis, RTFOFF off, PRTSGBUF pSgBuf, bool fBlocking, size_t *pcbRead) 102 102 { 103 103 PMEMIOSTREAM pThis = (PMEMIOSTREAM)pvThis; … … 123 123 if (pcbRead) 124 124 *pcbRead = cbToRead; 125 RTSgBufAdvance(pSgBuf, cbToRead); 125 126 126 127 return VINF_SUCCESS; … … 130 131 * @interface_method_impl{RTVFSIOSTREAMOPS,pfnWrite} 131 132 */ 132 static DECLCALLBACK(int) memFssIos_Write(void *pvThis, RTFOFF off, P CRTSGBUF pSgBuf, bool fBlocking, size_t *pcbWritten)133 static DECLCALLBACK(int) memFssIos_Write(void *pvThis, RTFOFF off, PRTSGBUF pSgBuf, bool fBlocking, size_t *pcbWritten) 133 134 { 134 135 RT_NOREF_PV(pvThis); RT_NOREF_PV(off); RT_NOREF_PV(pSgBuf); RT_NOREF_PV(fBlocking); RT_NOREF_PV(pcbWritten);
Note:
See TracChangeset
for help on using the changeset viewer.