From 06a45265194dc7e18475de9e3531977e32d7c196 Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 25 Oct 2012 19:37:36 +0200 Subject: mpcommon: add mp_rect type --- mpcommon.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mpcommon.h b/mpcommon.h index 674d9b1554..119f11fb3b 100644 --- a/mpcommon.h +++ b/mpcommon.h @@ -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 */ -- cgit v1.2.3