# HG changeset patch # User albeu # Date 1180508734 0 # Node ID 1d807885ce7b375b325b1bea19d04df898340871 # Parent 8412921b363c48e7235bca2c93e15c7fb2e8e38e Make command.h usable without the MPContext typedef. diff -r 8412921b363c -r 1d807885ce7b command.h --- 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);