Alexandre Julliard : comctl32: Make a function static.

Alexandre Julliard julliard at winehq.org
Thu Dec 4 09:02:29 CST 2008


Module: wine
Branch: master
Commit: c6aebe12b06679acd333b1bce19014f5600da67b
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=c6aebe12b06679acd333b1bce19014f5600da67b

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Thu Dec  4 12:46:45 2008 +0100

comctl32: Make a function static.

---

 dlls/comctl32/commctrl.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/comctl32/commctrl.c b/dlls/comctl32/commctrl.c
index b97a5e5..4e447af 100644
--- a/dlls/comctl32/commctrl.c
+++ b/dlls/comctl32/commctrl.c
@@ -123,7 +123,7 @@ static const char manifest[] =
 
 static const char manifest_filename[] = ARCH "_" NAME "_" PUBLIC_KEY "_" VERSION "_none_deadbeef.manifest";
 
-LRESULT WINAPI COMCTL32_SubclassProc (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
+static LRESULT WINAPI COMCTL32_SubclassProc (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
 
 LPWSTR  COMCTL32_wSubclass = NULL;
 HMODULE COMCTL32_hModule = 0;
@@ -1284,7 +1284,7 @@ BOOL WINAPI RemoveWindowSubclass(HWND hWnd, SUBCLASSPROC pfnSubclass, UINT_PTR u
  * Window procedure for all subclassed windows. 
  * Saves the current subclassing stack position to support nested messages
  */
-LRESULT WINAPI COMCTL32_SubclassProc (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
+static LRESULT WINAPI COMCTL32_SubclassProc (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
 {
    LPSUBCLASS_INFO stack;
    LPSUBCLASSPROCS proc;




More information about the wine-cvs mailing list