changeset 25946:04f280a9f4f4

Make some variables static.
author reimar
date Sun, 10 Feb 2008 19:58:05 +0000
parents 491e43b45aa9
children 2390635cf01f
files libvo/w32_common.c
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/w32_common.c	Sun Feb 10 19:55:15 2008 +0000
+++ b/libvo/w32_common.c	Sun Feb 10 19:58:05 2008 +0000
@@ -22,13 +22,13 @@
 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