Module: wine Branch: master Commit: 0ac2166cecf8066b63c1e4e0c920a4ea119a3c13 URL: https://gitlab.winehq.org/wine/wine/-/commit/0ac2166cecf8066b63c1e4e0c920a4e...
Author: Zebediah Figura zfigura@codeweavers.com Date: Sun Feb 5 21:44:26 2023 -0600
user32: Pass BSMINFO in BroadcastSystemMessageExA().
---
dlls/user32/message.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/user32/message.c b/dlls/user32/message.c index 9ad4abd21b5..33e81c76e4b 100644 --- a/dlls/user32/message.c +++ b/dlls/user32/message.c @@ -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 ); }