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

Alexandre Julliard julliard at winehq.org
Mon Feb 9 10:29:34 CST 2009


Module: wine
Branch: master
Commit: 07b7da77d4b8f68e5c1dc7f053096e76ff80139c
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=07b7da77d4b8f68e5c1dc7f053096e76ff80139c

Author: Francois Gouget <fgouget at free.fr>
Date:   Sat Feb  7 16:06:02 2009 +0100

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

---

 dlls/user32/edit.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/user32/edit.c b/dlls/user32/edit.c
index 636b957..ee9fb3f 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);
 }




More information about the wine-cvs mailing list