Changeset 90822 in vbox
- Timestamp:
- Aug 23, 2021 10:04:15 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vd.h
r85889 r90822 1313 1313 * @param off The offset of the virtual disk to read from. 1314 1314 * @param cbRead How many bytes to read. 1315 * @param p cSgBufPointer to the S/G buffer to read into.1315 * @param pSgBuf Pointer to the S/G buffer to read into. 1316 1316 * @param pfnComplete Completion callback. 1317 1317 * @param pvUser1 User data which is passed on completion. … … 1319 1319 */ 1320 1320 VBOXDDU_DECL(int) VDAsyncRead(PVDISK pDisk, uint64_t off, size_t cbRead, 1321 PCRTSGBUF p cSgBuf,1321 PCRTSGBUF pSgBuf, 1322 1322 PFNVDASYNCTRANSFERCOMPLETE pfnComplete, 1323 1323 void *pvUser1, void *pvUser2); … … 1331 1331 * @param off The offset of the virtual disk to write to. 1332 1332 * @param cbWrite How many bytes to write. 1333 * @param p cSgBufPointer to the S/G buffer to write from.1333 * @param pSgBuf Pointer to the S/G buffer to write from. 1334 1334 * @param pfnComplete Completion callback. 1335 1335 * @param pvUser1 User data which is passed on completion. … … 1337 1337 */ 1338 1338 VBOXDDU_DECL(int) VDAsyncWrite(PVDISK pDisk, uint64_t off, size_t cbWrite, 1339 PCRTSGBUF p cSgBuf,1339 PCRTSGBUF pSgBuf, 1340 1340 PFNVDASYNCTRANSFERCOMPLETE pfnComplete, 1341 1341 void *pvUser1, void *pvUser2);
Note:
See TracChangeset
for help on using the changeset viewer.