summaryrefslogtreecommitdiff
path: root/driver/mouse.h
diff options
context:
space:
mode:
Diffstat (limited to 'driver/mouse.h')
-rw-r--r--driver/mouse.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/driver/mouse.h b/driver/mouse.h
index 95bf088..77a93b8 100644
--- a/driver/mouse.h
+++ b/driver/mouse.h
@@ -1,2 +1,15 @@
-void mouse_handler();
+/**
+ * @file
+ *
+//http://forum.osdev.org/viewtopic.php?t=10247
+
+//based on Mouse.inc by SANiK
+//License: Use as you wish, except to cause damage
+ */
+
+#include <stdint.h>
+#include <stdbool.h>
+
+void mouse_handler(uint8_t byte);
void mouse_init();
+bool mouse_worker();