Changeset 85121 in vbox for trunk/src/VBox/Installer
- Timestamp:
- Jul 8, 2020 7:33:26 PM (5 years ago)
- Location:
- trunk/src/VBox/Installer/win
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/InstallHelper/VBoxInstallHelper.cpp
r83807 r85121 525 525 } 526 526 527 static VOID netCfgLoggerCallback(LPCSTRszString)527 static DECLCALLBACK(void) netCfgLoggerCallback(const char *pszString) 528 528 { 529 529 if (g_hCurrentModule) 530 logString(g_hCurrentModule, szString);530 logString(g_hCurrentModule, pszString); 531 531 } 532 532 … … 535 535 if (g_hCurrentModule) 536 536 { 537 VBoxNetCfgWinSetLogging( (LOG_ROUTINE)NULL);537 VBoxNetCfgWinSetLogging(NULL); 538 538 g_hCurrentModule = NULL; 539 539 } … … 549 549 g_hCurrentModule = hModule; 550 550 551 VBoxNetCfgWinSetLogging( (LOG_ROUTINE)netCfgLoggerCallback);551 VBoxNetCfgWinSetLogging(netCfgLoggerCallback); 552 552 /* uncomment next line if you want to add logging information from VBoxDrvCfg.cpp */ 553 553 // VBoxDrvCfgLoggerSet(vboxDrvLoggerCallback, NULL); -
trunk/src/VBox/Installer/win/Stub/VBoxStub.cpp
r83808 r85121 26 26 27 27 #include <iprt/win/windows.h> 28 #include < commctrl.h>28 #include <iprt/win/commctrl.h> 29 29 #include <fcntl.h> 30 30 #include <io.h>
Note:
See TracChangeset
for help on using the changeset viewer.