blob: f87c5a00caaa65d94b343da3be0e38670e4ff099 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef MPLAYER_COMMAND_H
#define MPLAYER_COMMAND_H
struct MPContext;
struct mp_cmd;
int run_command(struct MPContext *mpctx, struct mp_cmd *cmd);
char *property_expand_string(struct MPContext *mpctx, char *str);
void property_print_help(void);
#endif /* MPLAYER_COMMAND_H */
|