shell32/tests: Use SEE_MASK_NO_CONSOLE with ShellExecuteExA.

This commit is contained in:
Vincent Povirk 2014-04-17 17:32:27 -05:00 committed by Alexandre Julliard
parent 2005be6dc9
commit 3d1cf168cf
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ static INT_PTR shell_execute_ex(DWORD mask, LPCSTR verb, LPCSTR file,
trace("%s\n", shell_call);
sei.cbSize=sizeof(sei);
sei.fMask=SEE_MASK_NOCLOSEPROCESS | mask;
sei.fMask=SEE_MASK_NOCLOSEPROCESS | SEE_MASK_NO_CONSOLE | mask;
sei.hwnd=NULL;
sei.lpVerb=verb;
sei.lpFile=file;