summaryrefslogtreecommitdiffstats
path: root/command.h
diff options
context:
space:
mode:
authoralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-05-30 07:05:34 +0000
committeralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-05-30 07:05:34 +0000
commita931f0083edbfc12e98333ea0fddaf61a6aeda39 (patch)
tree51f6747c4961af41dde8f0d3bbc7a760462a3d40 /command.h
parent4918b7bb5bf76a0ef52b8cb109b8cab80167e9b8 (diff)
downloadmpv-a931f0083edbfc12e98333ea0fddaf61a6aeda39.tar.bz2
mpv-a931f0083edbfc12e98333ea0fddaf61a6aeda39.tar.xz
Make command.h usable without the MPContext typedef.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23415 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'command.h')
-rw-r--r--command.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/command.h b/command.h
index a383a1aad3..ab282a6d52 100644
--- a/command.h
+++ b/command.h
@@ -1,3 +1,3 @@
-int run_command(MPContext *mpctx, mp_cmd_t *cmd);
-char *property_expand_string(MPContext *mpctx, char *str);
+int run_command(struct MPContext *mpctx, mp_cmd_t *cmd);
+char *property_expand_string(struct MPContext *mpctx, char *str);
void property_print_help(void);