Changeset 10963 in vbox for trunk/include/VBox
- Timestamp:
- Jul 29, 2008 10:26:39 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 33833
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/types.h
r10715 r10963 492 492 493 493 494 /** 495 * MAC address. 496 * (The first 24 bits are the 'company id', where the first bit seems to have a special meaning if set.) 497 */ 498 typedef union PDMMAC 499 { 500 /** 8-bit view. */ 501 uint8_t au8[6]; 502 /** 16-bit view. */ 503 uint16_t au16[3]; 504 } PDMMAC; 494 /** PDM MAC address. 495 * @obsolete Use RTMAC. */ 496 typedef RTMAC PDMMAC; 505 497 /** Pointer to a MAC address. */ 506 498 typedef PDMMAC *PPDMMAC;
Note:
See TracChangeset
for help on using the changeset viewer.