From 07b7da77d4b8f68e5c1dc7f053096e76ff80139c Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Sat, 7 Feb 2009 16:06:02 +0100 Subject: [PATCH] user32: Make EditWndProcW() static, fix its documentation. --- dlls/user32/edit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/user32/edit.c b/dlls/user32/edit.c index 636b957893..ee9fb3f4e1 100644 --- a/dlls/user32/edit.c +++ b/dlls/user32/edit.c @@ -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); } -- 2.32.0.93.g670b81a890