Changeset 53090 in vbox for trunk/src/VBox/HostDrivers/VBoxNetFlt/win/cfg
- Timestamp:
- Oct 20, 2014 11:13:03 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/win/cfg/VBoxNetCfg.cpp
r53082 r53090 2073 2073 2074 2074 #define VBOXNETCFGWIN_NETADP_ID L"sun_VBoxNetAdp" 2075 static HRESULT vboxNetCfgWinNetAdpUninstall(IN INetCfg *pNc, DWORD InfRmFlags)2075 static HRESULT vboxNetCfgWinNetAdpUninstall(IN INetCfg *pNc, LPCWSTR pwszId, DWORD InfRmFlags) 2076 2076 { 2077 2077 HRESULT hr = S_OK; 2078 2078 NonStandardLog("Finding NetAdp driver package and trying to uninstall it ...\n"); 2079 2079 2080 VBoxDrvCfgInfUninstallAllF(L"Net", VBOXNETCFGWIN_NETADP_ID, InfRmFlags);2080 VBoxDrvCfgInfUninstallAllF(L"Net", pwszId, InfRmFlags); 2081 2081 NonStandardLog("NetAdp is not installed currently\n"); 2082 2082 return hr; 2083 2083 } 2084 2084 2085 VBOXNETCFGWIN_DECL(HRESULT) VBoxNetCfgWinNetAdpUninstall(IN INetCfg *pNc )2086 { 2087 return vboxNetCfgWinNetAdpUninstall(pNc, SUOI_FORCEDELETE);2085 VBOXNETCFGWIN_DECL(HRESULT) VBoxNetCfgWinNetAdpUninstall(IN INetCfg *pNc, IN LPCWSTR pwszId) 2086 { 2087 return vboxNetCfgWinNetAdpUninstall(pNc, pwszId, SUOI_FORCEDELETE); 2088 2088 } 2089 2089
Note:
See TracChangeset
for help on using the changeset viewer.