Changeset 21226 in vbox for trunk/src/VBox/Additions/WINNT/i8042prt
- Timestamp:
- Jul 5, 2009 5:37:04 PM (15 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/i8042prt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/i8042prt/i8042dep.c
r13837 r21226 1352 1352 { 1353 1353 /* Inform host that we support absolute */ 1354 req->mouseFeatures = V BOXGUEST_MOUSE_GUEST_CAN_ABSOLUTE;1354 req->mouseFeatures = VMMDEV_MOUSE_GUEST_CAN_ABSOLUTE; 1355 1355 req->pointerXPos = 0; 1356 1356 req->pointerYPos = 0; -
trunk/src/VBox/Additions/WINNT/i8042prt/moudep.c
r20961 r21226 543 543 if (RT_SUCCESS(rc) && RT_SUCCESS(req->header.rc)) 544 544 { 545 if (req->mouseFeatures & V BOXGUEST_MOUSE_HOST_CAN_ABSOLUTE)545 if (req->mouseFeatures & VMMDEV_MOUSE_HOST_CAN_ABSOLUTE) 546 546 { 547 547 // make it an absolute move … … 609 609 if (RT_SUCCESS(rc) && RT_SUCCESS(req->header.rc)) 610 610 { 611 if (req->mouseFeatures & V BOXGUEST_MOUSE_HOST_CAN_ABSOLUTE)611 if (req->mouseFeatures & VMMDEV_MOUSE_HOST_CAN_ABSOLUTE) 612 612 { 613 613 // make it an absolute move
Note:
See TracChangeset
for help on using the changeset viewer.