Changeset 77855 in vbox for trunk/include
- Timestamp:
- Mar 23, 2019 5:40:02 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 129539
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vd.h
r76585 r77855 1394 1394 PRTVFSFILE phVfsFile); 1395 1395 1396 1397 1398 /** @defgroup grp_vd_ifs_def Default implementations for certain VD interfaces. 1399 * @{ 1400 */ 1401 /** Internal per interface instance data. */ 1402 typedef struct VDIFINSTINT *VDIFINST; 1403 /** Pointer to the per instance interface data. */ 1404 typedef VDIFINST *PVDIFINST; 1405 1406 /** 1407 * Creates a new VD TCP/IP interface instance and adds it to the given interface list. 1408 * 1409 * @returns VBox status code. 1410 * @param phTcpNetInst Where to store the TCP/IP interface handle on success. 1411 * @param ppVdIfs Pointer to the VD interface list. 1412 */ 1413 VBOXDDU_DECL(int) VDIfTcpNetInstDefaultCreate(PVDIFINST phTcpNetInst, PVDINTERFACE *ppVdIfs); 1414 1415 /** 1416 * Destroys the given VD TCP/IP interface instance. 1417 * 1418 * @returns nothing. 1419 * @param hTcpNetInst The TCP/IP interface instance handle. 1420 */ 1421 VBOXDDU_DECL(void) VDIfTcpNetInstDefaultDestroy(VDIFINST hTcpNetInst); 1422 /** @} */ 1423 1424 1425 1396 1426 /** @defgroup grp_vd_ioiter I/O iterator 1397 1427 * @{ … … 1608 1638 VBOXDDU_DECL(int) VDIoBufMgrDestroy(VDIOBUFMGR hIoBufMgr); 1609 1639 1610 /** -1611 * Allocate a new I/O buffer .1640 /** 1641 * Allocate a new I/O buffer handle. 1612 1642 * 1613 1643 * @returns VBox status code.
Note:
See TracChangeset
for help on using the changeset viewer.