Changeset 28784 in vbox for trunk/include/VBox
- Timestamp:
- Apr 26, 2010 11:59:42 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 60672
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxHDD.h
r28620 r28784 460 460 * @return VBox status code. 461 461 * @param pvUser Opaque user data which is passed on request submission. 462 */ 463 typedef DECLCALLBACK(int) FNVDCOMPLETED(void *pvUser); 462 * @param rcReq Status code of the completed request. 463 */ 464 typedef DECLCALLBACK(int) FNVDCOMPLETED(void *pvUser, int rcReq); 464 465 /** Pointer to FNVDCOMPLETED() */ 465 466 typedef FNVDCOMPLETED *PFNVDCOMPLETED; … … 1616 1617 * Request completion callback for the async read/write API. 1617 1618 */ 1618 typedef void (FNVDASYNCTRANSFERCOMPLETE) (void *pvUser1, void *pvUser2 );1619 typedef void (FNVDASYNCTRANSFERCOMPLETE) (void *pvUser1, void *pvUser2, int rcReq); 1619 1620 /** Pointer to a transfer compelte callback. */ 1620 1621 typedef FNVDASYNCTRANSFERCOMPLETE *PFNVDASYNCTRANSFERCOMPLETE; -
trunk/include/VBox/pdmifs.h
r28383 r28784 1369 1369 * @param pInterface Pointer to the interface structure containing the called function pointer. 1370 1370 * @param pvUser The user argument given in pfnStartWrite/Read. 1371 * @thread Any thread. 1372 */ 1373 DECLR3CALLBACKMEMBER(int, pfnTransferCompleteNotify, (PPDMIBLOCKASYNCPORT pInterface, void *pvUser)); 1371 * @param rcReq IPRT Status code of the completed request. 1372 * @thread Any thread. 1373 */ 1374 DECLR3CALLBACKMEMBER(int, pfnTransferCompleteNotify, (PPDMIBLOCKASYNCPORT pInterface, void *pvUser, int rcReq)); 1374 1375 } PDMIBLOCKASYNCPORT; 1375 1376 /** PDMIBLOCKASYNCPORT interface ID. */ … … 1443 1444 * @param pInterface Pointer to the interface structure containing the called function pointer. 1444 1445 * @param pvUser The user argument given in pfnStartWrite. 1445 * @thread Any thread. 1446 */ 1447 DECLR3CALLBACKMEMBER(int, pfnTransferCompleteNotify, (PPDMIMEDIAASYNCPORT pInterface, void *pvUser)); 1446 * @param rcReq IPRT Status code of the completed request. 1447 * @thread Any thread. 1448 */ 1449 DECLR3CALLBACKMEMBER(int, pfnTransferCompleteNotify, (PPDMIMEDIAASYNCPORT pInterface, void *pvUser, int rcReq)); 1448 1450 } PDMIMEDIAASYNCPORT; 1449 1451 /** PDMIMEDIAASYNCPORT interface ID. */
Note:
See TracChangeset
for help on using the changeset viewer.