Alexandre Julliard : uxtheme: Make some variables static.

Alexandre Julliard julliard at wine.codeweavers.com
Wed Aug 2 06:48:52 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: 5234c8c94bdbcb9e65fb044c33d99c7770434459
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=5234c8c94bdbcb9e65fb044c33d99c7770434459

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Wed Aug  2 13:33:01 2006 +0200

uxtheme: Make some variables static.

---

 dlls/uxtheme/system.c |   18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/dlls/uxtheme/system.c b/dlls/uxtheme/system.c
index c834c52..4799072 100644
--- a/dlls/uxtheme/system.c
+++ b/dlls/uxtheme/system.c
@@ -57,17 +57,17 @@ static const WCHAR szDllName[] = {'D','l
 static const WCHAR szIniDocumentation[] = {'d','o','c','u','m','e','n','t','a','t','i','o','n','\0'};
 
 HINSTANCE hDllInst;
-
-DWORD dwThemeAppProperties = STAP_ALLOW_NONCLIENT | STAP_ALLOW_CONTROLS;
-ATOM atWindowTheme;
-ATOM atSubAppName;
-ATOM atSubIdList;
 ATOM atDialogThemeEnabled;
 
-BOOL bThemeActive = FALSE;
-WCHAR szCurrentTheme[MAX_PATH];
-WCHAR szCurrentColor[64];
-WCHAR szCurrentSize[64];
+static DWORD dwThemeAppProperties = STAP_ALLOW_NONCLIENT | STAP_ALLOW_CONTROLS;
+static ATOM atWindowTheme;
+static ATOM atSubAppName;
+static ATOM atSubIdList;
+
+static BOOL bThemeActive = FALSE;
+static WCHAR szCurrentTheme[MAX_PATH];
+static WCHAR szCurrentColor[64];
+static WCHAR szCurrentSize[64];
 
 /***********************************************************************/
 




More information about the wine-cvs mailing list