Module: wine Branch: master Commit: 12297d64efae194f0a4ccc2f660490104b197377 URL: http://source.winehq.org/git/wine.git/?a=commit;h=12297d64efae194f0a4ccc2f66... Author: Misha Koshelev <mk144210(a)bcm.edu> Date: Sat Jun 9 00:22:44 2007 -0500 shell32/tests: Use ShellExecuteEx with SEE_MASK_FLAG_DDEWAIT and SEE_MASK_FLAG_NO_UI for DDE tests. --- dlls/shell32/tests/shlexec.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/shell32/tests/shlexec.c b/dlls/shell32/tests/shlexec.c index e525ee2..621ec86 100644 --- a/dlls/shell32/tests/shlexec.c +++ b/dlls/shell32/tests/shlexec.c @@ -1128,7 +1128,7 @@ static DWORD CALLBACK ddeThread(LPVOID arg) assert(info && info->filename); PostThreadMessage(info->threadIdParent, WM_QUIT, - shell_execute(NULL, info->filename, NULL, NULL), + shell_execute_ex(SEE_MASK_FLAG_DDEWAIT | SEE_MASK_FLAG_NO_UI, NULL, info->filename, NULL, NULL), 0L); ExitThread(0); }