Changeset 30863 in vbox for trunk/include/VBox
- Timestamp:
- Jul 15, 2010 7:53:40 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 63692
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxHDD.h
r30788 r30863 1029 1029 * @param pszAddress The address to connect to. 1030 1030 * @param uPort The port to connect to. 1031 * @param pSock Where to store the handle to the established connect 1032 ion. 1031 * @param pSock Where to store the handle to the established connection. 1033 1032 */ 1034 1033 DECLR3CALLBACKMEMBER(int, pfnClientConnect, (const char *pszAddress, uint32_t uPort, PRTSOCKET pSock)); … … 1039 1038 * @return iprt status code. 1040 1039 * @param Sock Socket descriptor. 1041 ion.1042 1040 */ 1043 1041 DECLR3CALLBACKMEMBER(int, pfnClientClose, (RTSOCKET Sock)); … … 1543 1541 * 1544 1542 * @returns VBox status code. 1545 * @param pvUser The opaque user data passed on container creation. 1546 * @param pStorage The storage handle. 1547 * @param uOffset Offset to start reading from. 1548 * @param pvBuf Where to store the data. 1549 * @param cbRead How many bytes to read. 1550 * @param pIoCtx The I/O context which triggered the read. 1551 * @param ppMetaXfer Where to store the metadata transfer handle on success. 1543 * @param pvUser The opaque user data passed on container creation. 1544 * @param pStorage The storage handle. 1545 * @param uOffset Offset to start reading from. 1546 * @param pvBuf Where to store the data. 1547 * @param cbRead How many bytes to read. 1548 * @param pIoCtx The I/O context which triggered the read. 1549 * @param ppMetaXfer Where to store the metadata transfer handle on success. 1550 * @param pfnCompleted Completion callback. 1551 * @param pvCompleteUser Opaque user data passed in the completion callback. 1552 1552 */ 1553 1553 DECLR3CALLBACKMEMBER(int, pfnReadMetaAsync, (void *pvUser, PVDIOSTORAGE pStorage, 1554 1554 uint64_t uOffset, void *pvBuf, 1555 1555 size_t cbRead, PVDIOCTX pIoCtx, 1556 PPVDMETAXFER ppMetaXfer)); 1556 PPVDMETAXFER ppMetaXfer, 1557 PFNVDXFERCOMPLETED pfnComplete, 1558 void *pvCompleteUser)); 1557 1559 1558 1560 /**
Note:
See TracChangeset
for help on using the changeset viewer.