- Timestamp:
- Jul 22, 2016 6:02:56 PM (8 years ago)
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 13 edited
-
WINNT/Graphics/Video/mp/wddm/VBoxMPVidPn.cpp (modified) (1 diff)
-
WINNT/VBoxTray/VBoxClipboard.cpp (modified) (2 diffs)
-
WINNT/VBoxTray/VBoxDispIf.cpp (modified) (3 diffs)
-
WINNT/VBoxTray/VBoxSeamless.cpp (modified) (2 diffs)
-
common/VBoxGuestLib/VBoxGuestR3LibDragAndDrop.cpp (modified) (1 diff)
-
common/VBoxGuestLib/VBoxGuestR3LibHGCM.cpp (modified) (1 diff)
-
common/VBoxService/VBoxService.cpp (modified) (1 diff)
-
common/VBoxService/VBoxServiceCpuHotPlug.cpp (modified) (1 diff)
-
common/VBoxService/VBoxServiceStats.cpp (modified) (1 diff)
-
common/VBoxService/VBoxServiceToolBox.cpp (modified) (1 diff)
-
linux/drm/vbox_drv.h (modified) (1 diff)
-
linux/drm/vbox_irq.c (modified) (1 diff)
-
x11/VBoxClient/display.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxMPVidPn.cpp
r61548 r62470 887 887 return Status; 888 888 } 889 889 890 890 Status = vboxVidPnCheckMonitorModes(pDevExt, VidPnTargetId, &aModes[VidPnTargetId]); 891 891 -
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)); -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibDragAndDrop.cpp
r60979 r62470 52 52 #include "VBGLR3Internal.h" 53 53 54 54 55 /********************************************************************************************************************************* 55 * Forward declarations*56 * Forward declarations * 56 57 *********************************************************************************************************************************/ 57 58 58 59 VBGLR3DECL(int) VbglR3DnDHGSendProgress(PVBGLR3GUESTDNDCMDCTX pCtx, uint32_t uStatus, uint8_t uPercent, int rcErr); 59 60 61 60 62 /********************************************************************************************************************************* 61 * Private internal functions*63 * Private internal functions * 62 64 *********************************************************************************************************************************/ 63 65 -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibHGCM.cpp
r59012 r62470 25 25 * terms and conditions of either the GPL or the CDDL or both. 26 26 */ 27 27 28 28 29 /********************************************************************************************************************************* -
trunk/src/VBox/Additions/common/VBoxService/VBoxService.cpp
r60622 r62470 48 48 * stupid. That will hopefully be cleaned up eventually. 49 49 */ 50 50 51 51 52 /********************************************************************************************************************************* -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceCpuHotPlug.cpp
r60374 r62470 27 27 * Currently only supported for linux guests. 28 28 */ 29 29 30 30 31 /********************************************************************************************************************************* -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceStats.cpp
r62097 r62470 24 24 * gets registered by Machine::i_registerMetrics in Main. 25 25 */ 26 26 27 27 28 /********************************************************************************************************************************* -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceToolBox.cpp
r61093 r62470 49 49 50 50 using namespace guestControl; 51 51 52 52 53 /********************************************************************************************************************************* -
trunk/src/VBox/Additions/linux/drm/vbox_drv.h
r61596 r62470 287 287 int ret; 288 288 289 #if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 7, 0) 289 #if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 7, 0) 290 290 ret = ttm_bo_reserve(&bo->bo, true, no_wait, NULL); 291 291 #else -
trunk/src/VBox/Additions/linux/drm/vbox_irq.c
r60352 r62470 86 86 87 87 /** 88 * Query the host for 88 * Query the host for 89 89 */ 90 90 static void vbox_update_mode_hints(struct vbox_private *vbox) -
trunk/src/VBox/Additions/x11/VBoxClient/display.cpp
r60604 r62470 79 79 unsigned long cAfter = 0; 80 80 unsigned char *pData = 0; 81 81 82 82 if (XGetWindowProperty(pState->pDisplay, DefaultRootWindow(pState->pDisplay), 83 83 XInternAtom(pState->pDisplay, pszName, 0), 0, cItems,
Note:
See TracChangeset
for help on using the changeset viewer.

