From b8abe420bcd551013568b30d9ce144b47a77fc4f Mon Sep 17 00:00:00 2001 From: reimar Date: Sun, 10 Feb 2008 19:58:05 +0000 Subject: Make some variables static. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25978 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/w32_common.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'libvo') diff --git a/libvo/w32_common.c b/libvo/w32_common.c index d2e704301d..bae8ff3dfe 100644 --- a/libvo/w32_common.c +++ b/libvo/w32_common.c @@ -22,13 +22,13 @@ static const char classname[] = "MPlayer - Media player for Win32"; int vo_vm = 0; // last non-fullscreen extends -int prev_width; -int prev_height; -int prev_x; -int prev_y; +static int prev_width; +static int prev_height; +static int prev_x; +static int prev_y; -uint32_t o_dwidth; -uint32_t o_dheight; +static uint32_t o_dwidth; +static uint32_t o_dheight; static HINSTANCE hInstance; #define vo_window vo_w32_window -- cgit v1.2.3