diff --git a/headers/private/input/kb_mouse_driver.h b/headers/private/input/kb_mouse_driver.h index 0f341d5b54..009a3514cd 100644 --- a/headers/private/input/kb_mouse_driver.h +++ b/headers/private/input/kb_mouse_driver.h @@ -102,6 +102,21 @@ typedef struct { int32 wheel_xdelta; } mouse_movement; +typedef struct { + uint32 buttons; + float xpos; + float ypos; + bool has_contact; + float pressure; + int32 clicks; + bool eraser; + bigtime_t timestamp; + int32 wheel_ydelta; + int32 wheel_xdelta; + float tilt_x; + float tilt_y; +} tablet_movement; + #ifdef __cplusplus } #endif