Kernel: Stub absolute mouse positioning support

This is not the real kernel patch, @supercomputer7 is doing that :^)
This commit is contained in:
Sergey Bugaev 2020-02-03 19:29:40 +03:00 committed by Andreas Kling
commit 0334656e45
Notes: sideshowbarker 2024-07-19 09:40:30 +09:00
2 changed files with 7 additions and 6 deletions

View file

@ -27,8 +27,9 @@
#pragma once
struct MousePacket {
int dx { 0 };
int dy { 0 };
int dz { 0 };
int x { 0 };
int y { 0 };
int z { 0 };
unsigned char buttons { 0 };
bool is_relative { true };
};