Changeset 59291 in vbox
- Timestamp:
- Jan 8, 2016 6:18:29 PM (9 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/err.h
r59284 r59291 1474 1474 /** The I/O request is in progress. */ 1475 1475 #define VINF_PDM_MEDIAEX_IOREQ_IN_PROGRESS 2898 1476 /** The I/O request is in an invalid state for this operation.. */ 1477 #define VERR_PDM_MEDIAEX_IOREQ_INVALID_STATE (-2899) 1476 1478 /** @} */ 1477 1479 -
trunk/include/VBox/vmm/pdmstorageifs.h
r59284 r59291 600 600 * @thread Any thread. 601 601 */ 602 DECLR3CALLBACKMEMBER(int, pfnIoReqCompleteNotify, (P DMIMEDIAEXPORT pInterface, PDMMEDIAEXIOREQ hIoReq,602 DECLR3CALLBACKMEMBER(int, pfnIoReqCompleteNotify, (PPDMIMEDIAEXPORT pInterface, PDMMEDIAEXIOREQ hIoReq, 603 603 void *pvIoReqAlloc, int rcReq)); 604 604 … … 615 615 * @param cbCopy How many bytes to copy. 616 616 */ 617 DECLR3CALLBACKMEMBER(int, pfnIoReqCopyFromBuf, (P DMIMEDIAEXPORT pInterface, PDMMEDIAEXIOREQ hIoReq,617 DECLR3CALLBACKMEMBER(int, pfnIoReqCopyFromBuf, (PPDMIMEDIAEXPORT pInterface, PDMMEDIAEXIOREQ hIoReq, 618 618 void *pvIoReqAlloc, uint32_t offDst, const void *pvSrc, 619 619 size_t cbCopy)); … … 631 631 * @param cbCopy How many bytes to copy. 632 632 */ 633 DECLR3CALLBACKMEMBER(int, pfnIoReqCopyToBuf, (P DMIMEDIAEXPORT pInterface, PDMMEDIAEXIOREQ hIoReq,633 DECLR3CALLBACKMEMBER(int, pfnIoReqCopyToBuf, (PPDMIMEDIAEXPORT pInterface, PDMMEDIAEXIOREQ hIoReq, 634 634 void *pvIoReqAlloc, uint32_t offSrc, void *pvDst, 635 635 size_t cbCopy)); … … 680 680 * 681 681 * @returns VBox status code. 682 * @retval VERR_PDM_MEDIAEX_IOREQ_INVALID_STATE if the given request is still active. 682 683 * @param pInterface Pointer to the interface structure containing the called function pointer. 683 684 * @param hIoReq The I/O request to free.
Note:
See TracChangeset
for help on using the changeset viewer.