1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#ifndef MELVIX_INPUT_H #define MELVIX_INPUT_H #include <stdint.h> /** * Initialize the mouse IRQ handler */ void mouse_install(); /** * Initialize the us keyboard layout, * keyboard rate and IRQ handler */ void keyboard_install(); char wait_scancode(); #endif