Commit 07b7da77 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

user32: Make EditWndProcW() static, fix its documentation.

parent 9e7b5567
......@@ -5408,9 +5408,9 @@ LRESULT WINAPI EditWndProcA(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
/*********************************************************************
*
* EditWndProcW (USER32.@)
* EditWndProcW
*/
LRESULT WINAPI EditWndProcW(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
static LRESULT WINAPI EditWndProcW(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
return EditWndProc_common(hWnd, uMsg, wParam, lParam, TRUE);
}
......
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