Changeset 62470 in vbox for trunk/src/VBox/Additions/WINNT/VBoxTray
- Timestamp:
- Jul 22, 2016 6:02:56 PM (8 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/VBoxTray
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxClipboard.cpp
r61908 r62470 531 531 /* Announce available formats. Do not insert data, they will be inserted in WM_RENDER*. */ 532 532 uint32_t u32Formats = (uint32_t)lParam; 533 533 534 534 int vboxrc = vboxOpenClipboard(hwnd); 535 535 if (RT_SUCCESS(vboxrc)) … … 664 664 if (pCtx->timerRefresh) 665 665 KillTimer(pCtx->hwnd, 0); 666 /* 666 /* 667 667 * don't need to call PostQuitMessage cause 668 * the VBoxTray already finished a message loop 668 * the VBoxTray already finished a message loop 669 669 */ 670 670 } break; -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDispIf.cpp
r62415 r62470 1068 1068 WM_USER /* UINT wMsgFilterMax */, 1069 1069 PM_NOREMOVE); 1070 1071 /* 1070 1071 /* 1072 1072 * Send signal that message queue is ready. 1073 1073 * From this moment only the thread is ready to receive messages. … … 1111 1111 break; 1112 1112 } 1113 1113 1114 1114 switch (Msg.message) 1115 1115 { … … 1451 1451 /* The pfnD3DKMTInvalidateActiveVidPn was deprecated since Win7 and causes deadlocks since Win10 TH2. 1452 1452 Instead, the VidPn Manager can replace an old VidPn as soon as SetDisplayConfig or ChangeDisplaySettingsEx will try to set a new display mode. 1453 On Vista D3DKMTInvalidateActiveVidPn is still required. TBD: Get rid of it. */ 1453 On Vista D3DKMTInvalidateActiveVidPn is still required. TBD: Get rid of it. */ 1454 1454 if (Op.pIf->enmMode < VBOXDISPIF_MODE_WDDM_W7) 1455 1455 { -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxSeamless.cpp
r62406 r62470 239 239 rectVisible = rectWindow; 240 240 241 /* Filter out Windows XP shadow windows 241 /* Filter out Windows XP shadow windows 242 242 /** @todo still shows inside the guest */ 243 243 if ( szWindowText[0] == 0 && … … 258 258 if (strcmp(szWindowText, "Program Manager") && strcmp(szWindowClass, "ApplicationFrameWindow")) 259 259 { 260 Log(("VBoxTray: Enum hwnd=%x rect (%d,%d)-(%d,%d) [%d x %d](applying)\n", hwnd, 260 Log(("VBoxTray: Enum hwnd=%x rect (%d,%d)-(%d,%d) [%d x %d](applying)\n", hwnd, 261 261 rectWindow.left, rectWindow.top, rectWindow.right, rectWindow.bottom, 262 262 rectWindow.left - rectWindow.right, rectWindow.bottom - rectWindow.top));
Note:
See TracChangeset
for help on using the changeset viewer.