Commit cd073a66 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

comctl32: Make internal functions static.

parent c9384a20
...@@ -9921,7 +9921,7 @@ static LRESULT EditLblWndProcT(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lPara ...@@ -9921,7 +9921,7 @@ static LRESULT EditLblWndProcT(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lPara
* *
* RETURN: * 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); return EditLblWndProcT(hwnd, uMsg, wParam, lParam, TRUE);
} }
...@@ -9938,7 +9938,7 @@ LRESULT CALLBACK EditLblWndProcW(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lPa ...@@ -9938,7 +9938,7 @@ LRESULT CALLBACK EditLblWndProcW(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lPa
* *
* RETURN: * 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); return EditLblWndProcT(hwnd, uMsg, wParam, lParam, FALSE);
} }
......
...@@ -602,7 +602,7 @@ static BOOL PROPSHEET_CollectPageInfo(LPCPROPSHEETPAGEW lppsp, ...@@ -602,7 +602,7 @@ static BOOL PROPSHEET_CollectPageInfo(LPCPROPSHEETPAGEW lppsp,
* *
* Creates the actual property sheet. * Creates the actual property sheet.
*/ */
INT_PTR PROPSHEET_CreateDialog(PropSheetInfo* psInfo) static INT_PTR PROPSHEET_CreateDialog(PropSheetInfo* psInfo)
{ {
LRESULT ret; LRESULT ret;
LPCVOID template; LPCVOID template;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment