comctl32: Make internal functions static

James Hawkins truiken at gmail.com
Wed Oct 11 13:18:02 CDT 2006


Hi,

Changelog:
* Make internal functions static.

 dlls/comctl32/listview.c  |    4 ++--
 dlls/comctl32/propsheet.c |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

-- 
James Hawkins
-------------- next part --------------
diff --git a/dlls/comctl32/listview.c b/dlls/comctl32/listview.c
index b66d047..8d4fc6d 100644
--- a/dlls/comctl32/listview.c
+++ b/dlls/comctl32/listview.c
@@ -9921,7 +9921,7 @@ static LRESULT EditLblWndProcT(HWND hwnd
  *
  * RETURN:
  */
-LRESULT CALLBACK EditLblWndProcW(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
+static LRESULT CALLBACK EditLblWndProcW(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
 {
     return EditLblWndProcT(hwnd, uMsg, wParam, lParam, TRUE);
 }
@@ -9938,7 +9938,7 @@ LRESULT CALLBACK EditLblWndProcW(HWND hw
  *
  * RETURN:
  */
-LRESULT CALLBACK EditLblWndProcA(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
+static LRESULT CALLBACK EditLblWndProcA(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
 {
     return EditLblWndProcT(hwnd, uMsg, wParam, lParam, FALSE);
 }
diff --git a/dlls/comctl32/propsheet.c b/dlls/comctl32/propsheet.c
index 185b843..6a27d7a 100644
--- a/dlls/comctl32/propsheet.c
+++ b/dlls/comctl32/propsheet.c
@@ -602,7 +602,7 @@ static BOOL PROPSHEET_CollectPageInfo(LP
  *
  * Creates the actual property sheet.
  */
-INT_PTR PROPSHEET_CreateDialog(PropSheetInfo* psInfo)
+static INT_PTR PROPSHEET_CreateDialog(PropSheetInfo* psInfo)
 {
   LRESULT ret;
   LPCVOID template;
-- 
1.4.2.1


More information about the wine-patches mailing list