summaryrefslogtreecommitdiff
path: root/Kernel/MousePacket.h
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2020-02-04 03:00:50 +0200
committerAndreas Kling <kling@serenityos.org>2020-02-04 19:11:52 +0100
commit47978a5828eaaf5150fa347b8499b1a2b78a9e36 (patch)
treefe5eb932f3f5dfef40bc5f391c5b5653773253db /Kernel/MousePacket.h
parent44ddfd2bf5eef8da6211e9c57e93c773038f261e (diff)
downloadserenity-47978a5828eaaf5150fa347b8499b1a2b78a9e36.zip
Kernel: Add support for vmmouse
We add this feature together with the VMWareBackdoor class. VMWareBackdoor class is responsible for enabling the vmmouse, and then controlling it from the PS2 mouse IRQ handler.
Diffstat (limited to 'Kernel/MousePacket.h')
-rw-r--r--Kernel/MousePacket.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Kernel/MousePacket.h b/Kernel/MousePacket.h
index a6c93f151a..d5d6e8311a 100644
--- a/Kernel/MousePacket.h
+++ b/Kernel/MousePacket.h
@@ -26,6 +26,8 @@
#pragma once
+#include <AK/Types.h>
+
struct MousePacket {
int x { 0 };
int y { 0 };