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

Kernel: Add support for the PS/2 mouse wheel if detected.

This commit is contained in:
Andreas Kling 2019-05-13 19:48:14 +02:00
parent 852d648912
commit dae8eb6454
3 changed files with 78 additions and 17 deletions

View file

@ -3,5 +3,6 @@
struct MousePacket {
int dx { 0 };
int dy { 0 };
byte buttons;
int dz { 0 };
byte buttons { 0 };
};