1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:17:45 +00:00

Kernel: Add horizontal mouse scroll support

This commit is contained in:
Dmitry Petrov 2021-12-13 23:12:01 +01:00 committed by Andreas Kling
parent 1afb6d5eca
commit d61cc47055
5 changed files with 30 additions and 5 deletions

View file

@ -12,6 +12,7 @@ struct MousePacket {
int x { 0 };
int y { 0 };
int z { 0 };
int w { 0 };
enum Button {
LeftButton = 0x01,