user32: Pass BSMINFO in BroadcastSystemMessageExA().

This commit is contained in:
Zebediah Figura 2023-02-05 21:44:26 -06:00 committed by Alexandre Julliard
parent 348fafcdbb
commit 0ac2166cec

View file

@ -1192,7 +1192,7 @@ LONG WINAPI BroadcastSystemMessageW( DWORD flags, LPDWORD recipients, UINT msg,
LONG WINAPI BroadcastSystemMessageExA( DWORD flags, LPDWORD recipients, UINT msg, WPARAM wp, LPARAM lp, PBSMINFO pinfo )
{
map_wparam_AtoW( msg, &wp, WMCHAR_MAP_NOMAPPING );
return BroadcastSystemMessageExW( flags, recipients, msg, wp, lp, NULL );
return BroadcastSystemMessageExW( flags, recipients, msg, wp, lp, pinfo );
}