Changeset 558 in vbox
- Timestamp:
- Feb 2, 2007 3:24:21 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 18177
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdm.h
r528 r558 1744 1744 } PDMNETWORKLINKSTATE; 1745 1745 1746 1747 /** 1748 * Network packet description 1749 */ 1750 typedef struct PDMINETWORKPACKET 1751 { 1752 size_t cb; 1753 void *pvBuf; 1754 } PDMINETWORKPACKET, *PPDMINETWORKPACKET; 1755 1756 1746 1757 /** Pointer to a network connector interface */ 1747 1758 typedef struct PDMINETWORKCONNECTOR *PPDMINETWORKCONNECTOR; … … 1761 1772 */ 1762 1773 DECLR3CALLBACKMEMBER(int, pfnSend,(PPDMINETWORKCONNECTOR pInterface, const void *pvBuf, size_t cb)); 1774 1775 /** 1776 * Send multiple data packets to the network. 1777 * 1778 * @returns VBox status code. 1779 * @param pInterface Pointer to the interface structure containing the called function pointer. 1780 * @param cPackets Number of packets 1781 * @param paPacket Packet description array 1782 * @thread EMT 1783 */ 1784 DECLR3CALLBACKMEMBER(int, pfnSendEx,(PPDMINETWORKCONNECTOR pInterface, uint32_t cPackets, PPDMINETWORKPACKET paPacket)); 1763 1785 1764 1786 /**
Note:
See TracChangeset
for help on using the changeset viewer.