6 Dec
2023
6 Dec
'23
9:09 p.m.
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?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/4621#note_55254