Module: wine Branch: master Commit: cd073a66a5ef6904acd0bec4ad43024ecd1655e6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=cd073a66a5ef6904acd0bec4ad...
Author: James Hawkins truiken@gmail.com Date: Wed Oct 11 11:18:02 2006 -0700
comctl32: Make internal functions static.
---
dlls/comctl32/listview.c | 4 ++-- dlls/comctl32/propsheet.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-)
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;