Changeset 22272 in vbox for trunk/src/VBox
- Timestamp:
- Aug 14, 2009 8:46:25 PM (15 years ago)
- Location:
- trunk/src/VBox/Devices/VMMDev
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/VMMDev/VMMDev.cpp
r22271 r22272 2481 2481 2482 2482 /* 2483 * Reset the mouse integration feature bit 2483 * Reset the mouse integration feature bits 2484 2484 */ 2485 if (pThis->mouseCapabilities & (VMMDEV_MOUSE_GUEST_CAN_ABSOLUTE|VMMDEV_MOUSE_GUEST_NEEDS_HOST_CURSOR))2486 { 2487 pThis->mouseCapabilities &= ~VMMDEV_MOUSE_GUEST_ CAN_ABSOLUTE;2485 if (pThis->mouseCapabilities & VMMDEV_MOUSE_GUEST_MASK) 2486 { 2487 pThis->mouseCapabilities &= ~VMMDEV_MOUSE_GUEST_MASK; 2488 2488 /* notify the connector */ 2489 2489 Log(("vmmdevReset: capabilities changed (%x), informing connector\n", pThis->mouseCapabilities)); -
trunk/src/VBox/Devices/VMMDev/VMMDevState.h
r22271 r22272 38 38 uint32_t hypervisorSize; 39 39 40 /** bit 0: guest capability (1 == wants), bit 1: flag value has changed */ 41 /** bit 2: host capability (1 == wants), bit 3: flag value has changed */ 40 /** mouse capabilities of host and guest */ 42 41 uint32_t mouseCapabilities; 43 42 /** absolute mouse position in pixels */
Note:
See TracChangeset
for help on using the changeset viewer.