Changeset 11158 in vbox for trunk/src/VBox/Frontends/VBoxBFE
- Timestamp:
- Aug 5, 2008 11:14:59 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 34149
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp
r8155 r11158 205 205 bool fSniff; /**< Set if the network sniffer should be installed. */ 206 206 const char *pszSniff; /**< Output file for the network sniffer. */ 207 PDMMACMac; /**< The mac address for the device. */207 RTMAC Mac; /**< The mac address for the device. */ 208 208 const char *pszName; /**< The device name of a HIF device. The name of the internal network. */ 209 209 #ifdef RT_OS_OS2 … … 1731 1731 rc = CFGMR3InsertInteger(pInst, "PCIFunctionNo", 0); UPDATE_RC(); 1732 1732 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); UPDATE_RC(); 1733 rc = CFGMR3InsertBytes(pCfg, "MAC", &g_aNetDevs[ulInstance].Mac, sizeof( PDMMAC));1733 rc = CFGMR3InsertBytes(pCfg, "MAC", &g_aNetDevs[ulInstance].Mac, sizeof(RTMAC)); 1734 1734 UPDATE_RC(); 1735 1735
Note:
See TracChangeset
for help on using the changeset viewer.