summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-02-10 19:58:05 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-02-10 19:58:05 +0000
commitb8abe420bcd551013568b30d9ce144b47a77fc4f (patch)
tree519076c457979814ef0fb68f408a66dc74f896d9
parent6201d6027dd0d89d01bad98ba8f9e26660ac8c8f (diff)
downloadmpv-b8abe420bcd551013568b30d9ce144b47a77fc4f.tar.bz2
mpv-b8abe420bcd551013568b30d9ce144b47a77fc4f.tar.xz
Make some variables static.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25978 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--libvo/w32_common.c12
1 files changed, 6 insertions, 6 deletions
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