From: Tim Clem tclem@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 );