shell32/tests: Use ShellExecuteEx with SEE_MASK_FLAG_DDEWAIT and SEE_MASK_FLAG_NO_UI for DDE tests.

This commit is contained in:
Misha Koshelev 2007-06-09 00:22:44 -05:00 committed by Alexandre Julliard
parent ee3147f434
commit 12297d64ef

View file

@ -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);
}