Mercurial > mplayer.hg
changeset 23397:1d807885ce7b
Make command.h usable without the MPContext typedef.
author | albeu |
---|---|
date | Wed, 30 May 2007 07:05:34 +0000 |
parents | 8412921b363c |
children | 69bf352bcef8 |
files | command.h |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/command.h Wed May 30 06:53:06 2007 +0000 +++ b/command.h Wed May 30 07:05:34 2007 +0000 @@ -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);