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

This commit is contained in:
Francois Gouget 2009-02-07 16:06:02 +01:00 committed by Alexandre Julliard
parent 9e7b55675d
commit 07b7da77d4
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}