Changeset 97812 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Dec 15, 2022 5:31:03 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-linux.c
r97790 r97812 551 551 /* Set up input device capabilities. */ 552 552 ASMBitSet(g_pInputDevice->evbit, EV_ABS); 553 ASMBitSet(g_pInputDevice->evbit, EV_KEY); 553 554 # ifdef EV_SYN 554 555 ASMBitSet(g_pInputDevice->evbit, EV_SYN); … … 559 560 input_set_abs_params(g_pInputDevice, ABS_X, VMMDEV_MOUSE_RANGE_MIN, VMMDEV_MOUSE_RANGE_MAX, 0, 0); 560 561 input_set_abs_params(g_pInputDevice, ABS_Y, VMMDEV_MOUSE_RANGE_MIN, VMMDEV_MOUSE_RANGE_MAX, 0, 0); 562 563 ASMBitSet(g_pInputDevice->keybit, BTN_MOUSE); 561 564 562 565 /* Report extra capabilities to input layer if extended mouse state protocol
Note:
See TracChangeset
for help on using the changeset viewer.