shell32/tests: Use ShellExecuteEx with SEE_MASK_FLAG_DDEWAIT and SEE_MASK_FLAG_NO_UI for DDE tests.
This commit is contained in:
parent
ee3147f434
commit
12297d64ef
|
@ -1128,7 +1128,7 @@ static DWORD CALLBACK ddeThread(LPVOID arg)
|
||||||
assert(info && info->filename);
|
assert(info && info->filename);
|
||||||
PostThreadMessage(info->threadIdParent,
|
PostThreadMessage(info->threadIdParent,
|
||||||
WM_QUIT,
|
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);
|
0L);
|
||||||
ExitThread(0);
|
ExitThread(0);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue