comctl32: Declare some variables static

Andrew Talbot andrew.talbot at talbotville.com
Fri Jan 2 06:54:46 CST 2009


Changelog:
    comctl32: Declare some variables static.

diff --git a/dlls/comctl32/commctrl.c b/dlls/comctl32/commctrl.c
index 4e447af..949b62a 100644
--- a/dlls/comctl32/commctrl.c
+++ b/dlls/comctl32/commctrl.c
@@ -125,9 +125,9 @@ static const char manifest_filename[] = ARCH "_" NAME "_" PUBLIC_KEY "_" VERSION
 
 static LRESULT WINAPI COMCTL32_SubclassProc (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
 
-LPWSTR  COMCTL32_wSubclass = NULL;
+static LPWSTR COMCTL32_wSubclass = NULL;
 HMODULE COMCTL32_hModule = 0;
-LANGID  COMCTL32_uiLang = MAKELANGID(LANG_NEUTRAL, SUBLANG_NEUTRAL);
+static LANGID COMCTL32_uiLang = MAKELANGID(LANG_NEUTRAL, SUBLANG_NEUTRAL);
 HBRUSH  COMCTL32_hPattern55AABrush = NULL;
 COMCTL32_SysColor  comctl32_color;
 



More information about the wine-patches mailing list