shell32/tests: Use SW_HIDE with ShellExecuteA in tests.
This commit is contained in:
parent
dfa65a52bb
commit
3ebb9b7b75
|
@ -118,7 +118,7 @@ static INT_PTR shell_execute(LPCSTR verb, LPCSTR file, LPCSTR parameters, LPCSTR
|
|||
* association it displays the 'Open With' dialog and I could not find
|
||||
* a flag to prevent this.
|
||||
*/
|
||||
rc=(INT_PTR)ShellExecuteA(NULL, verb, file, parameters, directory, SW_SHOWNORMAL);
|
||||
rc=(INT_PTR)ShellExecuteA(NULL, verb, file, parameters, directory, SW_HIDE);
|
||||
|
||||
if (rc > 32)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue