This website requires JavaScript.
Explore
Help
Sign in
Stowage
/
ladybird
Watch
2
Star
0
Fork
You've already forked ladybird
0
mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced
2025-12-08 06:09:58 +00:00
Code
Issues
Projects
Releases
Packages
Wiki
Activity
c4c4bbc5ba
ladybird
/
Kernel
/
MousePacket.h
9 lines
116 B
C
Raw
Normal View
History
Unescape
Escape
Kernel+WindowServer: Move mouse input signal parsing to kernel driver. It was silly for the WindowServer to have to know anything about the format of PS/2 mouse packets. This patch also enables use of the middle mouse button.
2019-03-05 13:59:44 +01:00
#
pragma once
struct
MousePacket
{
int
dx
{
0
}
;
int
dy
{
0
}
;
Kernel: Add support for the PS/2 mouse wheel if detected.
2019-05-13 19:48:14 +02:00
int
dz
{
0
}
;
byte
buttons
{
0
}
;
Kernel+WindowServer: Move mouse input signal parsing to kernel driver. It was silly for the WindowServer to have to know anything about the format of PS/2 mouse packets. This patch also enables use of the middle mouse button.
2019-03-05 13:59:44 +01:00
}
;
Reference in a new issue
Copy permalink