3 Aug
2023
3 Aug
'23
9:17 p.m.
From: Tim Clem <tclem(a)codeweavers.com> The only important field at this point is cbSize, but if it's zero, the message will not be processed. --- dlls/win32u/message.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/dlls/win32u/message.c b/dlls/win32u/message.c index 71c1017a3f0..095b3694e3d 100644 --- a/dlls/win32u/message.c +++ b/dlls/win32u/message.c @@ -1842,9 +1842,6 @@ void pack_user_message( void *buffer, size_t size, UINT message, } return; } - case CB_GETCOMBOBOXINFO: - memset( buffer, 0, size ); - return; } if (size) memcpy( buffer, lparam_ptr, size ); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/3507