mirror of
https://github.com/mpv-player/mpv
synced 2024-10-30 04:46:41 +01:00
2b2792565e
Remove #include of "mp_core.h" and "input/input.h". Their only use was that functions declared in command.h took pointers to structs defined in those headers. Declare the structs directly as incomplete types instead. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26305 b3059339-0415-0410-9bf9-f77b7e298cf2
12 lines
279 B
C
12 lines
279 B
C
#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 */
|