From 8b1f0d1966eb61d5f21aeb4dcc474b454dbb062a Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Wed, 2 Mar 2011 10:57:56 +0000 Subject: [PATCH] [USER32] Revert a previous change that shouldn't have been comitted yet. svn path=/trunk/; revision=50952 --- reactos/dll/win32/user32/controls/edit.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reactos/dll/win32/user32/controls/edit.c b/reactos/dll/win32/user32/controls/edit.c index 80a8cb7fcc8..819ebaefaf0 100644 --- a/reactos/dll/win32/user32/controls/edit.c +++ b/reactos/dll/win32/user32/controls/edit.c @@ -4472,7 +4472,8 @@ static inline LRESULT DefWindowProcT(HWND hwnd, UINT msg, WPARAM wParam, LPARAM * The messages are in the order of the actual integer values * (which can be found in include/windows.h) */ -LRESULT EditWndProc_common( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam, BOOL unicode ) +LRESULT WINAPI EditWndProc_common( HWND hwnd, UINT msg, + WPARAM wParam, LPARAM lParam, BOOL unicode ) { EDITSTATE *es = (EDITSTATE *)GetWindowLongPtrW( hwnd, 0 ); LRESULT result = 0;