aboutsummaryrefslogtreecommitdiff
path: root/src/input/input.h
diff options
context:
space:
mode:
authorMarvin Borner2019-09-15 18:06:14 +0200
committerMarvin Borner2019-09-15 18:06:14 +0200
commitd7acec1be838230f3188b3887977ca185e38f1a4 (patch)
treec0b526422efc6ebe9f2efac14995de875e9ee108 /src/input/input.h
parentd3bb62c3b99b3b7108de0c2aa4d1d1ead0bd3fb8 (diff)
Added basic PS/2 keyboard driver
Diffstat (limited to 'src/input/input.h')
-rw-r--r--src/input/input.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/input/input.h b/src/input/input.h
new file mode 100644
index 0000000..60d2f79
--- /dev/null
+++ b/src/input/input.h
@@ -0,0 +1,10 @@
+#ifndef MELVIX_INPUT_H
+#define MELVIX_INPUT_H
+
+void mouse_install();
+
+char get_mouse(int n);
+
+void keyboard_install();
+
+#endif