Changeset 52592 in vbox for trunk/src/VBox/HostDrivers/VBoxNetFlt/win/cfg/VBoxNetCfg.cpp
- Timestamp:
- Sep 3, 2014 8:23:24 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/win/cfg/VBoxNetCfg.cpp
r51908 r52592 2390 2390 2391 2391 #define DRIVERHWID _T("sun_VBoxNetAdp") 2392 #define DRIVERHWID_NDIS6 _T("sun_VBoxNetAdp6") 2392 2393 2393 2394 #define SetErrBreak(strAndArgs) \ … … 2546 2547 t += _tcslen (t) + 1) 2547 2548 { 2548 if (!_tcsicmp (DRIVERHWID, t) )2549 if (!_tcsicmp (DRIVERHWID, t) || !_tcsicmp (DRIVERHWID_NDIS6, t)) 2549 2550 { 2550 2551 /* get the device instance ID */ … … 2603 2604 } 2604 2605 2605 VBOXNETCFGWIN_DECL(HRESULT) VBoxNetCfgWinUpdateHostOnlyNetworkInterface(LPCWSTR pcsxwInf, BOOL *pbRebootRequired )2606 { 2607 return VBoxDrvCfgDrvUpdate( DRIVERHWID, pcsxwInf, pbRebootRequired);2606 VBOXNETCFGWIN_DECL(HRESULT) VBoxNetCfgWinUpdateHostOnlyNetworkInterface(LPCWSTR pcsxwInf, BOOL *pbRebootRequired, LPCWSTR pcsxwId) 2607 { 2608 return VBoxDrvCfgDrvUpdate(pcsxwId, pcsxwInf, pbRebootRequired); 2608 2609 } 2609 2610 … … 2766 2767 while (t && *t && t < (TCHAR *) &detailBuf [RT_ELEMENTS(detailBuf)]) 2767 2768 { 2768 if (!_tcsicmp(t, DRIVERHWID) )2769 if (!_tcsicmp(t, DRIVERHWID) || !_tcsicmp(t, DRIVERHWID_NDIS6)) 2769 2770 break; 2770 2771
Note:
See TracChangeset
for help on using the changeset viewer.