From e7ee1e3edfcfdd1ade199e1b11e4199c7d880cbb Mon Sep 17 00:00:00 2001 From: James Tabor Date: Sat, 19 Nov 2011 05:35:35 +0000 Subject: [PATCH] - Removes next phase for DesktopWndProcA. svn path=/trunk/; revision=54429 --- reactos/dll/win32/user32/windows/message.c | 27 ---------------------- 1 file changed, 27 deletions(-) diff --git a/reactos/dll/win32/user32/windows/message.c b/reactos/dll/win32/user32/windows/message.c index 23fe29c0ca6..95a8d55a688 100644 --- a/reactos/dll/win32/user32/windows/message.c +++ b/reactos/dll/win32/user32/windows/message.c @@ -1896,33 +1896,6 @@ DispatchMessageW(CONST MSG *lpmsg) return Ret; } -LRESULT -WINAPI -DesktopWndProcA( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam ) -{ - LRESULT Result; - MSG AnsiMsg, UcMsg; - - ERR("Desktop A Class Atom! hWnd 0x%x, Msg %d\n", hwnd, message); - - AnsiMsg.hwnd = hwnd; - AnsiMsg.message = message; - AnsiMsg.wParam = wParam; - AnsiMsg.lParam = lParam; - - // Desktop is always Unicode so convert Ansi here. - if (!MsgiAnsiToUnicodeMessage(hwnd, &UcMsg, &AnsiMsg)) - { - return FALSE; - } - - Result = DesktopWndProcW(hwnd, message, UcMsg.wParam, UcMsg.lParam); - - MsgiAnsiToUnicodeCleanup(&UcMsg, &AnsiMsg); - - return Result; -} - static VOID IntConvertMsgToAnsi(LPMSG lpMsg) {