event.h 225 B

12345678910111213141516
  1. #pragma once
  2. #include <kernel/input/input_event.h>
  3. #include <types/types.h>
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. void commit_input_event(struct input_event* evt);
  8. void dispatch_event(void);
  9. #ifdef __cplusplus
  10. }
  11. #endif