Changeset 44252 in vbox for trunk/include/VBox
- Timestamp:
- Jan 8, 2013 1:23:54 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vd-ifs-internal.h
r44242 r44252 328 328 */ 329 329 DECLR3CALLBACKMEMBER(size_t, pfnIoCtxCopyTo, (void *pvUser, PVDIOCTX pIoCtx, 330 void *pvBuffer, size_t cbBuffer));330 const void *pvBuffer, size_t cbBuffer)); 331 331 332 332 /** … … 549 549 } 550 550 551 DECLINLINE(size_t) vdIfIoIntIoCtxCopyTo(PVDINTERFACEIOINT pIfIoInt, PVDIOCTX pIoCtx, 552 const void *pvBuffer, size_t cbBuffer) 553 { 554 return pIfIoInt->pfnIoCtxCopyTo(pIfIoInt->Core.pvUser, pIoCtx, pvBuffer, cbBuffer); 555 } 556 557 DECLINLINE(size_t) vdIfIoIntIoCtxCopyFrom(PVDINTERFACEIOINT pIfIoInt, PVDIOCTX pIoCtx, 558 void *pvBuffer, size_t cbBuffer) 559 { 560 return pIfIoInt->pfnIoCtxCopyTo(pIfIoInt->Core.pvUser, pIoCtx, pvBuffer, cbBuffer); 561 } 562 551 563 DECLINLINE(size_t) vdIfIoIntIoCtxSet(PVDINTERFACEIOINT pIfIoInt, PVDIOCTX pIoCtx, 552 564 int ch, size_t cbSet) … … 555 567 } 556 568 569 DECLINLINE(size_t) vdIfIoIntIoCtxSegArrayCreate(PVDINTERFACEIOINT pIfIoInt, PVDIOCTX pIoCtx, 570 PRTSGSEG paSeg, unsigned *pcSeg, 571 size_t cbData) 572 { 573 return pIfIoInt->pfnIoCtxSegArrayCreate(pIfIoInt->Core.pvUser, pIoCtx, paSeg, pcSeg, cbData); 574 } 575 557 576 DECLINLINE(bool) vdIfIoIntIoCtxIsSynchronous(PVDINTERFACEIOINT pIfIoInt, PVDIOCTX pIoCtx) 558 577 {
Note:
See TracChangeset
for help on using the changeset viewer.