[PATCH 0/1] MR1680: win32u: Use WMCHAR_MAP_SENDMESSAGE for NtUserSendMessage.
This fixes a regression introduced by d42888f07c6e3e491c99bb5c8b62b568264e990c. Before this commit SendMessage* also used WMCHAR_MAP_SENDMESSAGE. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52877 -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1680
From: Sven Baars <sbaars(a)codeweavers.com> Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52877 --- dlls/win32u/message.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/win32u/message.c b/dlls/win32u/message.c index 6f78c99921a..8db81a57065 100644 --- a/dlls/win32u/message.c +++ b/dlls/win32u/message.c @@ -2995,7 +2995,7 @@ static LRESULT send_window_message( HWND hwnd, UINT msg, WPARAM wparam, LPARAM l info.lparam = lparam; info.flags = SMTO_NORMAL; info.timeout = 0; - info.wm_char = WMCHAR_MAP_SENDMESSAGETIMEOUT; + info.wm_char = WMCHAR_MAP_SENDMESSAGE; info.params = client_params; process_message( &info, &res, ansi ); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/1680
This merge request was approved by Jacek Caban. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1680
participants (3)
-
Jacek Caban (@jacek) -
Sven Baars -
Sven Baars (@sbaars)