Changeset 92693 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Dec 2, 2021 10:52:15 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 148592
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxService.cpp
r92662 r92693 1249 1249 */ 1250 1250 #ifdef RT_OS_WINDOWS 1251 # ifndef RT_OS_NT4 /** @todo r=bird: What's RT_OS_NT4??? */1252 1251 /* Install console control handler. */ 1253 1252 if (!SetConsoleCtrlHandler(vgsvcWinConsoleControlHandler, TRUE /* Add handler */)) … … 1256 1255 /* Just skip this error, not critical. */ 1257 1256 } 1258 # endif /* !RT_OS_NT4 */1259 1257 #endif /* RT_OS_WINDOWS */ 1260 1258 rc = VGSvcStartServices(); … … 1269 1267 VbglR3ClosePidFile(g_szPidFile, hPidFile); 1270 1268 #ifdef RT_OS_WINDOWS 1271 # ifndef RT_OS_NT41272 1269 /* Uninstall console control handler. */ 1273 1270 if (!SetConsoleCtrlHandler((PHANDLER_ROUTINE)NULL, FALSE /* Remove handler */)) … … 1276 1273 /* Just skip this error, not critical. */ 1277 1274 } 1278 # endif /* !RT_OS_NT4 */1279 1275 #else /* !RT_OS_WINDOWS */ 1280 1276 /* On Windows - since we're running as a console application - we already stopped all services
Note:
See TracChangeset
for help on using the changeset viewer.