From 9142df5dc4bd090d324c2b62059f52f4e83b737f Mon Sep 17 00:00:00 2001 From: Daniel Caujolle-Bert Date: Thu, 3 May 2001 18:22:37 +0000 Subject: Implement xine_*_window*() functions. CVS patchset: 58 CVS date: 2001/05/03 18:22:37 --- src/xine-engine/xine.c | 42 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 41 insertions(+), 1 deletion(-) (limited to 'src/xine-engine/xine.c') diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c index 98ec4e05a..5d39330cc 100644 --- a/src/xine-engine/xine.c +++ b/src/xine-engine/xine.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine.c,v 1.11 2001/04/30 21:55:27 guenter Exp $ + * $Id: xine.c,v 1.12 2001/05/03 18:22:37 f1rmb Exp $ * * top-level xine functions * @@ -526,3 +526,43 @@ int xine_get_status(xine_t *this) { return this->status; } +/* + * + */ +void *xine_get_window_output(xine_t *this) { + + return (this->video_out->get_window(this->video_out)); +} + +/* + * + */ +int xine_get_window_property(xine_t *this, int property) { + + return (this->video_out->get_property(this->video_out, property)); +} + +/* + * + */ +int xine_set_window_property(xine_t *this, int property, int value) { + + return (this->video_out->set_property(this->video_out, property, value)); +} + +/* + * + */ +void xine_get_window_property_min_max(xine_t *this, + int property, int *min, int *max) { + + this->video_out->get_property_min_max(this->video_out, property, min, max); +} + +/* + * + */ +void xine_window_handle_event(xine_t *this, void *event) { + + this->video_out->handle_event(this->video_out, event); +} -- cgit v1.2.3