Changeset 36487 in vbox for trunk/src/VBox/Installer
- Timestamp:
- Apr 1, 2011 8:21:30 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70893
- Location:
- trunk/src/VBox/Installer/win/InstallHelper
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/InstallHelper/Makefile.kmk
r32112 r36487 37 37 VBoxInstallHelper_LIBS = $(PATH_SDK_W2K3DDK_LIB)/Msi.lib 38 38 ifdef VBOX_WITH_NETFLT 39 VBoxInstallHelper_LIBS += $(PATH_LIB)/WinNetConfig.lib \ 39 VBoxInstallHelper_LIBS += $(TARGET_WinNetConfig) \ 40 $(TARGET_VBoxDrvCfg) \ 40 41 $(PATH_TOOL_$(VBOX_VCC_TOOL)_LIB)/comsupp.lib \ 41 42 $(PATH_SDK_WINPSDK_LIB)/WbemUuid.Lib -
trunk/src/VBox/Installer/win/InstallHelper/VBoxInstallHelper.cpp
r36452 r36487 18 18 #ifdef VBOX_WITH_NETFLT 19 19 # include "VBox/VBoxNetCfg-win.h" 20 # include "VBox/VBoxDrvCfg-win.h" 20 21 #endif /* VBOX_WITH_NETFLT */ 21 22 … … 899 900 if(!!pInfPath && bIsFile) 900 901 { 901 HRESULT tmpHr = VBox NetCfgWinInfInstall(pInfPath);902 HRESULT tmpHr = VBoxDrvCfgInfInstall(pInfPath); 902 903 Assert(tmpHr == S_OK); 903 904 } … … 949 950 if(hr == S_OK) 950 951 { 951 hr = VBox NetCfgWinInfUninstallAll(&GUID_DEVCLASS_NET, NETADP_ID, L"Net", 0/* could be SUOI_FORCEDELETE */);952 hr = VBoxDrvCfgInfUninstallAllSetupDi(&GUID_DEVCLASS_NET, NETADP_ID, L"Net", 0/* could be SUOI_FORCEDELETE */); 952 953 if(hr != S_OK) 953 954 {
Note:
See TracChangeset
for help on using the changeset viewer.