From 526e969419891386dd699f472f06f61df821a431 Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 16 May 2013 14:07:41 +0200 Subject: w32: use vo_w32_control() for all VOs --- video/out/w32_common.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'video/out/w32_common.c') diff --git a/video/out/w32_common.c b/video/out/w32_common.c index 8ace0614cc..5903a26f94 100644 --- a/video/out/w32_common.c +++ b/video/out/w32_common.c @@ -336,7 +336,7 @@ static BOOL CALLBACK mon_enum(HMONITOR hmon, HDC hdc, LPRECT r, LPARAM p) * vo_screenwidth * vo_screenheight */ -void w32_update_xinerama_info(struct vo *vo) +static void w32_update_xinerama_info(struct vo *vo) { struct vo_w32_state *w32 = vo->w32; struct mp_vo_opts *opts = vo->opts; @@ -647,7 +647,7 @@ int vo_w32_init(struct vo *vo) * event in addition or not. */ -void vo_w32_fullscreen(struct vo *vo) +static void vo_w32_fullscreen(struct vo *vo) { vo->opts->fs = !vo->opts->fs; reinit_window_state(vo); @@ -658,7 +658,7 @@ void vo_w32_fullscreen(struct vo *vo) * * Should be called on VOCTRL_BORDER event. */ -void vo_w32_border(struct vo *vo) +static void vo_w32_border(struct vo *vo) { vo->opts->border = !vo->opts->border; reinit_window_state(vo); @@ -669,7 +669,7 @@ void vo_w32_border(struct vo *vo) * * Should be called on VOCTRL_ONTOP event. */ -void vo_w32_ontop(struct vo *vo) +static void vo_w32_ontop(struct vo *vo) { vo->opts->ontop = !vo->opts->ontop; reinit_window_state(vo); -- cgit v1.2.3