Brendan Shanks (@bshanks) commented about dlls/win32u/message.c:
- Calculate size of packed message buffer.
*/ size_t user_message_size( HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam,
BOOL other_process, BOOL ansi )
BOOL other_process, BOOL ansi, size_t *reply_size )
{ const void *lparam_ptr = (const void *)lparam; size_t size = 0;
- /* Windows provices space for at least 20048 bytes for string getters, which
I assume `20048` is a typo?