Changeset 100929 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Aug 21, 2023 11:09:45 PM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/vfs/vfsiosmisc.cpp
r100928 r100929 237 237 } 238 238 239 240 RTDECL(int) RTVfsFileReadAll(RTVFSFILE hVfsFile, void **ppvBuf, size_t *pcbBuf)241 {242 RTVFSIOSTREAM hVfsIos = RTVfsFileToIoStream(hVfsFile);243 int rc = RTVfsIoStrmReadAll(hVfsIos, ppvBuf, pcbBuf);244 RTVfsIoStrmRelease(hVfsIos);245 return rc;246 }247 248 249 RTDECL(void) RTVfsFileReadAllFree(void *pvBuf, size_t cbBuf)250 {251 RTVfsIoStrmReadAllFree(pvBuf, cbBuf);252 }253
Note:
See TracChangeset
for help on using the changeset viewer.