summaryrefslogtreecommitdiffstats
path: root/input/input.h
diff options
context:
space:
mode:
authorUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-30 11:06:55 +0300
committerUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-30 14:46:17 +0300
commitbfcb3a7a8130be478103beb1923567f5e5d86c67 (patch)
treee8a376f6cebf586fff714f1b49b83c0e695b0cdb /input/input.h
parent32e52b8fd0b917a40a9192770cc1a41aa31b34d0 (diff)
downloadmpv-bfcb3a7a8130be478103beb1923567f5e5d86c67.tar.bz2
mpv-bfcb3a7a8130be478103beb1923567f5e5d86c67.tar.xz
input: Move key filedescriptor list to context struct
The context variable is now passed to VOs too as it's now needed to add a callback on the X filedescriptor.
Diffstat (limited to 'input/input.h')
-rw-r--r--input/input.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/input/input.h b/input/input.h
index 6833051340..2e0a198bef 100644
--- a/input/input.h
+++ b/input/input.h
@@ -225,12 +225,12 @@ mp_input_rm_cmd_fd(int fd);
// The args are the same as for the key's drivers. If you don't use any valid fd you MUST
// give a read_func.
-int
-mp_input_add_key_fd(int fd, int select, mp_key_func_t read_func, mp_close_func_t close_func, void *ctx);
+int mp_input_add_key_fd(struct input_ctx *ictx, int fd, int select,
+ mp_key_func_t read_func, mp_close_func_t close_func,
+ void *ctx);
// As for the cmd one you usually don't need this function.
-void
-mp_input_rm_key_fd(int fd);
+void mp_input_rm_key_fd(struct input_ctx *ictx, int fd);
/// Get input key from its name.
int mp_input_get_key_from_name(const char *name);