blob: 5e0e69334d356ca0040c1db62897c49e85e08c87 (
plain)
1
2
3
4
5
6
7
8
|
#ifndef COMMAND_H
#define COMMAND_H
int run_command(struct MPContext *mpctx, mp_cmd_t *cmd);
char *property_expand_string(struct MPContext *mpctx, char *str);
void property_print_help(void);
#endif /* COMMAND_H */
|