summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--command.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/command.h b/command.h
index ffc81be2b5..f87c5a00ca 100644
--- a/command.h
+++ b/command.h
@@ -1,10 +1,10 @@
#ifndef MPLAYER_COMMAND_H
#define MPLAYER_COMMAND_H
-#include "mp_core.h"
-#include "input/input.h"
+struct MPContext;
+struct mp_cmd;
-int run_command(struct MPContext *mpctx, mp_cmd_t *cmd);
+int run_command(struct MPContext *mpctx, struct mp_cmd *cmd);
char *property_expand_string(struct MPContext *mpctx, char *str);
void property_print_help(void);