summaryrefslogtreecommitdiffstats
path: root/core/input/input.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/input/input.h')
-rw-r--r--core/input/input.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/input/input.h b/core/input/input.h
index 2a9b3832c1..da92efd373 100644
--- a/core/input/input.h
+++ b/core/input/input.h
@@ -36,6 +36,7 @@ enum mp_command_type {
MP_CMD_TV_STEP_NORM,
MP_CMD_TV_STEP_CHANNEL_LIST,
MP_CMD_SCREENSHOT,
+ MP_CMD_SCREENSHOT_TO_FILE,
MP_CMD_LOADFILE,
MP_CMD_LOADLIST,
MP_CMD_PLAYLIST_CLEAR,
@@ -87,6 +88,9 @@ enum mp_command_type {
/// Video output commands
MP_CMD_VO_CMDLINE,
+
+ // Internal
+ MP_CMD_COMMAND_LIST, // list of sub-commands in args[0].v.p
};
#define MP_CMD_MAX_ARGS 10
@@ -128,6 +132,7 @@ struct mp_cmd_arg {
float f;
double d;
char *s;
+ void *p;
} v;
};