Changeset 22704 in vbox
- Timestamp:
- Sep 2, 2009 10:44:27 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VMMDev.h
r22096 r22704 257 257 /** The guest can read VMMDev events to find out about pointer movement */ 258 258 #define VMMDEV_MOUSE_GUEST_USES_VMMDEV RT_BIT(4) 259 /** If the guest changes the status of the 260 * VMMDEV_MOUSE_GUEST_NEEDS_HOST_CURSOR bit, the host will honour this */ 261 #define VMMDEV_MOUSE_HOST_RECHECKS_NEEDS_HOST_CURSOR RT_BIT(5) 259 262 /** The mask of all VMMDEV_MOUSE_* flags */ 260 #define VMMDEV_MOUSE_MASK UINT32_C(0x000000 1f)263 #define VMMDEV_MOUSE_MASK UINT32_C(0x0000003f) 261 264 /** The mask of guest capability changes for which notification events should 262 265 * be sent */ -
trunk/src/VBox/Devices/VMMDev/VMMDev.cpp
r22480 r22704 2500 2500 pThis->u32HGCMEnabled = 0; 2501 2501 #endif /* VBOX_WITH_HGCM */ 2502 /* The GUI checks whether this changes in this version of VirtualBox. */ 2503 pThis->mouseCapabilities |= VMMDEV_MOUSE_HOST_RECHECKS_NEEDS_HOST_CURSOR; 2502 2504 2503 2505 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.