https://git.reactos.org/?p=reactos.git;a=commitdiff;h=9bffdcb6e7e6f6e132488…
commit 9bffdcb6e7e6f6e1324886daa0ad6d3afc3b03c2
Author: Thomas Faber <thomas.faber(a)reactos.org>
AuthorDate: Sun Aug 19 12:02:17 2018 +0200
Commit: Thomas Faber <thomas.faber(a)reactos.org>
CommitDate: Sun Aug 19 12:02:24 2018 +0200
[USER32] Log the text of message boxes to help figure out some test bot timeouts.
---
win32ss/user/user32/windows/messagebox.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/win32ss/user/user32/windows/messagebox.c
b/win32ss/user/user32/windows/messagebox.c
index 658ba763b4..57033ad4e6 100644
--- a/win32ss/user/user32/windows/messagebox.c
+++ b/win32ss/user/user32/windows/messagebox.c
@@ -1045,6 +1045,7 @@ SoftModalMessageBox(IN LPMSGBOXDATA lpMsgBoxData)
tpl->cy = RESCALE_Y(btntop, units);
/* Finally show the message-box */
+ ERR("MessageBox: %s\n", wine_dbgstr_wn(lpMsgBoxParams->lpszText,
textlen));
ret = DialogBoxIndirectParamW(lpMsgBoxParams->hInstance, tpl,
lpMsgBoxParams->hwndOwner,
MessageBoxProc, (LPARAM)&mbd);