BarryServer : Git

All the code for all my projects
// BarryServer : Git / OrionLibC / commit

// Related

OrionLibC

Barry keyboard/Mouse driver headers 2e2f919 (2 years, 2 months ago)
diff --git a/include/sys/kbd.h b/include/sys/kbd.h
new file mode 100644
index 0000000..75d2830
--- /dev/null
+++ b/include/sys/kbd.h
@@ -0,0 +1,9 @@
+#ifndef _SYS_KBD_H
+#define _SYS_KBD_H
+
+/* Structure for the keyboard input */
+typedef struct KeyInput {
+	unsigned char key;
+} KeyInput;
+
+#endif
diff --git a/include/sys/mouse.h b/include/sys/mouse.h
new file mode 100644
index 0000000..698d405
--- /dev/null
+++ b/include/sys/mouse.h
@@ -0,0 +1,5 @@
+#ifndef _SYS_MOUSE_H
+#define _SYS_MOUSE_H
+
+
+#endif