- Timestamp:
- Aug 27, 2018 5:10:05 PM (6 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/win/RpcChannelHook.cpp
r71719 r73919 29 29 #include "RpcChannelHook.h" 30 30 31 #if def RT_OS_WINDOWS31 #if defined(RT_OS_WINDOWS) && defined(VBOX_WITH_SDS) 32 32 33 33 volatile bool CRpcChannelHook::s_fChannelRegistered = false; … … 217 217 } 218 218 219 #endif 219 #endif // defined(RT_OS_WINDOWS) && defined(VBOX_WITH_SDS) -
trunk/src/VBox/Main/src-server/win/svcmain.cpp
r71716 r73919 97 97 volatile uint32_t dwTimeOut = dwNormalTimeout; /* time for EXE to be idle before shutting down. Can be decreased at system shutdown phase. */ 98 98 99 100 #ifdef VBOX_WITH_SDS 99 101 100 102 BOOL CALLBACK CloseWindowProc(_In_ HWND hWnd, _In_ LPARAM /* lParam */) … … 204 206 } 205 207 206 207 208 #if !defined _WIN32_WINNT_WIN8 208 209 … … 215 216 return IsWindowsVersionOrGreaterWrap(HIBYTE(_WIN32_WINNT_WIN8), LOBYTE(_WIN32_WINNT_WIN8), 0); 216 217 } 218 219 #endif // !VBOX_WITH_SDS 217 220 218 221 … … 313 316 314 317 #ifdef VBOX_WITH_SDS 318 315 319 class VBoxSVCRegistration; 316 320 … … 628 632 } 629 633 630 #endif / * VBOX_WITH_SDS */634 #endif // VBOX_WITH_SDS 631 635 632 636 … … 684 688 g_pModule->bActivity, g_pModule->GetLockCount())); 685 689 690 #ifdef VBOX_WITH_SDS 686 691 // On Windows 7 our clients doesn't receive right sequence of Session End events 687 692 // So we send them all WM_QUIT to forcible close them. … … 691 696 if(!IsWindows8OrGreaterWrap()) 692 697 CloseActiveClients(); 698 #endif 693 699 } 694 700 rc = !fActiveConnection;
Note:
See TracChangeset
for help on using the changeset viewer.