24 Mar
2025
24 Mar
'25
8:52 p.m.
Alexandre Julliard (@julliard) commented about dlls/wow64win/user.c:
return HandleToUlong( NtUserSetActiveWindow( hwnd )); }
+NTSTATUS WINAPI wow64_NtUserSetAdditionalForegroundBoostProcesses( UINT *args ) +{ + HWND hwnd = get_handle( &args ); + DWORD count = get_ulong( &args ); + HANDLE *array = get_ptr( &args ); + return NtUserSetAdditionalForegroundBoostProcesses( hwnd, count, array );
You also need to convert the handles inside the array. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7607#note_98920