summaryrefslogtreecommitdiffstats
path: root/input/input.h
diff options
context:
space:
mode:
authorUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-30 18:57:02 +0300
committerUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-30 19:34:48 +0300
commit8de8be15366b235fb252d5f83509b0ce1ea825c5 (patch)
treee41c6a81a81e2d46d9da9bb6a39968f33a645cec /input/input.h
parentbb12a33f9ae0b5cbf628e6f4e0218736a89e481f (diff)
downloadmpv-8de8be15366b235fb252d5f83509b0ce1ea825c5.tar.bz2
mpv-8de8be15366b235fb252d5f83509b0ce1ea825c5.tar.xz
Move input options to option struct
Diffstat (limited to 'input/input.h')
-rw-r--r--input/input.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/input/input.h b/input/input.h
index 570e65eea3..0a09f68d2c 100644
--- a/input/input.h
+++ b/input/input.h
@@ -274,7 +274,8 @@ void mp_input_set_section(struct input_ctx *ictx, char *name);
char *mp_input_get_section(struct input_ctx *ictx);
// When you create a new driver you should add it in these 2 functions.
-struct input_ctx *mp_input_init(int use_gui);
+struct input_conf;
+struct input_ctx *mp_input_init(struct input_conf *input_conf, int use_gui);
void mp_input_uninit(struct input_ctx *ictx);