Changeset 569 in vbox
- Timestamp:
- Feb 2, 2007 6:15:47 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 18189
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdm.h
r558 r569 1750 1750 typedef struct PDMINETWORKPACKET 1751 1751 { 1752 /** The size of the package. */ 1752 1753 size_t cb; 1754 /* Pointer to the packet. 1755 * @todo Rename to const void *pvBuf as it's only for sending. */ 1753 1756 void *pvBuf; 1754 } PDMINETWORKPACKET, *PPDMINETWORKPACKET; 1757 } PDMINETWORKPACKET; 1758 /** Pointer to a network packet descriptor. */ 1759 typedef PDMINETWORKPACKET *PPDMINETWORKPACKET; 1760 /** Pointer to a const network packet descriptor. */ 1761 typedef const PDMINETWORKPACKET *PCPDMINETWORKPACKET; 1755 1762 1756 1763
Note:
See TracChangeset
for help on using the changeset viewer.