blob: ee8c451a7c16869dc579c6915a903626bfb57736 (
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;
void 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 */
|