Changeset 59448 in vbox for trunk/include/VBox
- Timestamp:
- Jan 22, 2016 6:45:31 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 105199
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmstorageifs.h
r59305 r59448 629 629 * @param pvIoReqAlloc The allocator specific memory for this request. 630 630 * @param offDst The destination offset from the start to write the data to. 631 * @param p vSrc Whereto read the data from.631 * @param pSgBuf The S/G buffer to read the data from. 632 632 * @param cbCopy How many bytes to copy. 633 633 */ 634 634 DECLR3CALLBACKMEMBER(int, pfnIoReqCopyFromBuf, (PPDMIMEDIAEXPORT pInterface, PDMMEDIAEXIOREQ hIoReq, 635 void *pvIoReqAlloc, uint32_t offDst, const void *pvSrc,635 void *pvIoReqAlloc, uint32_t offDst, PRTSGBUF pSgBuf, 636 636 size_t cbCopy)); 637 637 … … 645 645 * @param pvIoReqAlloc The allocator specific memory for this request. 646 646 * @param offSrc The offset from the start of the buffer to read the data from. 647 * @param p vDst Where to store the data.647 * @param pSgBuf The S/G buffer to write the data to. 648 648 * @param cbCopy How many bytes to copy. 649 649 */ 650 650 DECLR3CALLBACKMEMBER(int, pfnIoReqCopyToBuf, (PPDMIMEDIAEXPORT pInterface, PDMMEDIAEXIOREQ hIoReq, 651 void *pvIoReqAlloc, uint32_t offSrc, void *pvDst,651 void *pvIoReqAlloc, uint32_t offSrc, PRTSGBUF pSgBuf, 652 652 size_t cbCopy)); 653 653 … … 655 655 656 656 /** PDMIMEDIAAEXPORT interface ID. */ 657 #define PDMIMEDIAEXPORT_IID " 03c197d8-953c-4e24-b5bf-477379471cca"657 #define PDMIMEDIAEXPORT_IID "1385d27b-8648-4174-ac73-02148c479c90" 658 658 659 659
Note:
See TracChangeset
for help on using the changeset viewer.