mpcommon: add mp_rect type

This commit is contained in:
wm4 2012-10-25 19:37:36 +02:00
parent f50d0b16e0
commit 06a4526519
1 changed files with 5 additions and 0 deletions

View File

@ -80,4 +80,9 @@ extern const char *mplayer_version;
char *mp_format_time(double time, bool fractions);
struct mp_rect {
int x0, y0;
int x1, y1;
};
#endif /* MPLAYER_MPCOMMON_H */