keyboard.h 271 B

123456789101112131415
  1. #pragma once
  2. #include <types/types.h>
  3. // TODO: this whole thing needs rewriting
  4. int32_t keyboard_has_data(void);
  5. void process_keyboard_data(void);
  6. #ifdef __cplusplus
  7. extern "C" void handle_keyboard_interrupt(void);
  8. #else
  9. void handle_keyboard_interrupt(void);
  10. #endif