Changeset 30467 in vbox
- Timestamp:
- Jun 28, 2010 1:47:43 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdmifs.h
r29590 r30467 1397 1397 * @param pInterface Pointer to the interface structure containing the called function pointer. 1398 1398 * @param off Offset to start reading from.c 1399 * @param p Seg Pointer to the first element in the scatter list.1400 * @param cSeg Number of entries in the list.1399 * @param paSegs Pointer to the S/G segment array. 1400 * @param cSegs Number of entries in the array. 1401 1401 * @param cbRead Number of bytes to read. Must be aligned to a sector boundary. 1402 1402 * @param pvUser User argument which is returned in completion callback. 1403 1403 * @thread Any thread. 1404 1404 */ 1405 DECLR3CALLBACKMEMBER(int, pfnStartRead,(PPDMIBLOCKASYNC pInterface, uint64_t off, PCRTSGSEG p Seg, unsigned cSeg, size_t cbRead, void *pvUser));1405 DECLR3CALLBACKMEMBER(int, pfnStartRead,(PPDMIBLOCKASYNC pInterface, uint64_t off, PCRTSGSEG paSegs, unsigned cSegs, size_t cbRead, void *pvUser)); 1406 1406 1407 1407 /** … … 1411 1411 * @param pInterface Pointer to the interface structure containing the called function pointer. 1412 1412 * @param off Offset to start writing at. The offset must be aligned to a sector boundary. 1413 * @param p Seg Pointer to the first element in the gather list.1414 * @param cSeg Number of entries in the list.1413 * @param paSegs Pointer to the S/G segment array. 1414 * @param cSegs Number of entries in the array. 1415 1415 * @param cbWrite Number of bytes to write. Must be aligned to a sector boundary. 1416 1416 * @param pvUser User argument which is returned in completion callback. 1417 1417 * @thread Any thread. 1418 1418 */ 1419 DECLR3CALLBACKMEMBER(int, pfnStartWrite,(PPDMIBLOCKASYNC pInterface, uint64_t off, PCRTSGSEG p Seg, unsigned cSeg, size_t cbWrite, void *pvUser));1419 DECLR3CALLBACKMEMBER(int, pfnStartWrite,(PPDMIBLOCKASYNC pInterface, uint64_t off, PCRTSGSEG paSegs, unsigned cSegs, size_t cbWrite, void *pvUser)); 1420 1420 1421 1421 /** … … 1471 1471 * @param pInterface Pointer to the interface structure containing the called function pointer. 1472 1472 * @param off Offset to start reading from. Must be aligned to a sector boundary. 1473 * @param p Seg Pointer to the first element in the scatter list.1474 * @param cSeg Number of entries in the list.1473 * @param paSegs Pointer to the S/G segment array. 1474 * @param cSegs Number of entries in the array. 1475 1475 * @param cbRead Number of bytes to read. Must be aligned to a sector boundary. 1476 1476 * @param pvUser User data. 1477 1477 * @thread Any thread. 1478 1478 */ 1479 DECLR3CALLBACKMEMBER(int, pfnStartRead,(PPDMIMEDIAASYNC pInterface, uint64_t off, PCRTSGSEG p Seg, unsigned cSeg, size_t cbRead, void *pvUser));1479 DECLR3CALLBACKMEMBER(int, pfnStartRead,(PPDMIMEDIAASYNC pInterface, uint64_t off, PCRTSGSEG paSegs, unsigned cSegs, size_t cbRead, void *pvUser)); 1480 1480 1481 1481 /** … … 1485 1485 * @param pInterface Pointer to the interface structure containing the called function pointer. 1486 1486 * @param off Offset to start writing at. Must be aligned to a sector boundary. 1487 * @param p Seg Pointer to the first element in the gather list.1488 * @param cSeg Number of entries in the list.1487 * @param paSegs Pointer to the S/G segment array. 1488 * @param cSegs Number of entries in the array. 1489 1489 * @param cbWrite Number of bytes to write. Must be aligned to a sector boundary. 1490 1490 * @param pvUser User data. 1491 1491 * @thread Any thread. 1492 1492 */ 1493 DECLR3CALLBACKMEMBER(int, pfnStartWrite,(PPDMIMEDIAASYNC pInterface, uint64_t off, PCRTSGSEG p Seg, unsigned cSeg, size_t cbWrite, void *pvUser));1493 DECLR3CALLBACKMEMBER(int, pfnStartWrite,(PPDMIMEDIAASYNC pInterface, uint64_t off, PCRTSGSEG paSegs, unsigned cSegs, size_t cbWrite, void *pvUser)); 1494 1494 1495 1495 /**
Note:
See TracChangeset
for help on using the changeset viewer.