Changeset 79183 in vbox for trunk/src/VBox/Additions/WINNT/VBoxTray
- Timestamp:
- Jun 17, 2019 12:51:35 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxSeamless.cpp
r78937 r79183 77 77 if (uNtVersion < RTSYSTEM_MAKE_NT_VERSION(5, 0, 0)) /* Windows NT 4.0 or older */ 78 78 { 79 Log (("VBoxTray: VBoxSeamlessInit: Windows NT 4.0 or older not supported!\n"));79 LogRel(("Seamless: Windows NT 4.0 or older not supported!\n")); 80 80 rc = VERR_NOT_SUPPORTED; 81 81 } … … 89 89 *(PFNRT *)&pCtx->pfnVBoxHookRemoveWindowTracker = RTLdrGetFunction(pCtx->hModHook, "VBoxHookRemoveWindowTracker"); 90 90 91 /* rc should contain success status */ 92 AssertRC(rc); /** @todo r=andy Makes no sense here!? */ 93 94 VBoxSeamlessSetSupported(TRUE); 95 96 *ppInstance = pCtx; 91 if ( pCtx->pfnVBoxHookInstallWindowTracker 92 && pCtx->pfnVBoxHookRemoveWindowTracker) 93 { 94 VBoxSeamlessSetSupported(TRUE); 95 96 *ppInstance = pCtx; 97 } 98 else 99 { 100 LogRel(("Seamless: Not supported, skipping\n")); 101 rc = VERR_NOT_SUPPORTED; 102 } 97 103 } 98 104 else 99 105 { 100 if (rc == VERR_FILE_NOT_FOUND) 101 VBoxTrayShowError("VBoxHook.dll not found"); 102 103 LogFlowFunc(("Unable to load %s, rc=%Rrc\n", VBOXHOOK_DLL_NAME, rc)); 106 LogRel(("Seamless: Could not load %s (%Rrc), skipping\n", VBOXHOOK_DLL_NAME, rc)); 107 rc = VERR_NOT_SUPPORTED; 104 108 } 105 109 }
Note:
See TracChangeset
for help on using the changeset viewer.