BarryServer : Git

All the code for all my projects
// BarryServer : Git / Nucleus / commit / 18495cfe1cf5f7fc6f6b0c8c12d7f34dfded1be0 / include / sys / kbd.h

// Related

Nucleus

Barry System headers (remove libc dependency) 18495cf (3 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