diff options
author | epoch <epoch@hacking.allowed.org> | 2019-08-03 07:39:32 -0500 |
---|---|---|
committer | epoch <epoch@hacking.allowed.org> | 2019-08-03 07:39:32 -0500 |
commit | 6c475f3422cf6facffede93c40668a3d91c8b586 (patch) | |
tree | 241979b46501e5f9f31288924ae35a55c8209d4d | |
parent | 798009e39c861c21fb20521114fe9061daeca18e (diff) | |
download | hackvr-6c475f3422cf6facffede93c40668a3d91c8b586.tar.gz hackvr-6c475f3422cf6facffede93c40668a3d91c8b586.zip |
fixed prototype for input_event_handler and added input_init prototype
-rw-r--r-- | src/input.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/input.h b/src/input.h index 7bdc616..15b28f4 100644 --- a/src/input.h +++ b/src/input.h @@ -3,7 +3,8 @@ #include <idc.h> -int input_event_handler(struct shit *me,char *line); +int input_init(); +void input_event_handler(struct shit *me,char *line); int mouse_event_handler(); int keyboard_event_handler(); |