diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-27 11:34:23 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-27 17:25:31 -0300 |
commit | 1e8eb4e2c6f75b12d863e52ded56ccd48b5c8769 (patch) | |
tree | a14c4e76342b9c833dbbf1a592af6b2e23a627c8 /src/os/input.h | |
parent | e644f8c2b18f42f0b19a7c9e2b369a969c619620 (diff) | |
download | rneovim-1e8eb4e2c6f75b12d863e52ded56ccd48b5c8769.tar.gz rneovim-1e8eb4e2c6f75b12d863e52ded56ccd48b5c8769.tar.bz2 rneovim-1e8eb4e2c6f75b12d863e52ded56ccd48b5c8769.zip |
Make `EventType` enum private to input.c
This enum doesn't need to be public since `event_poll` is only interested in
user input(but other events may be handled by libuv callbacks).
Diffstat (limited to 'src/os/input.h')
-rw-r--r-- | src/os/input.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/os/input.h b/src/os/input.h index dd6a402cf9..a48769e843 100644 --- a/src/os/input.h +++ b/src/os/input.h @@ -4,11 +4,10 @@ #include <stdint.h> #include <stdbool.h> -#include "os/event.h" #include "types.h" void input_init(void); -EventType input_check(void); +bool input_ready(void); void input_start(void); void input_stop(void); uint32_t input_read(char *buf, uint32_t count); |