0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

Make command.h usable without the MPContext typedef.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23415 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
albeu 2007-05-30 07:05:34 +00:00
parent 4918b7bb5b
commit a931f0083e

View File

@ -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);