Vincent Povirk : shell32/tests: Use SEE_MASK_NO_CONSOLE with ShellExecuteExA.

Alexandre Julliard julliard at winehq.org
Fri Apr 25 14:15:24 CDT 2014


Module: wine
Branch: master
Commit: 3d1cf168cfc517e71515bac04fa13fb2bbd4ab49
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=3d1cf168cfc517e71515bac04fa13fb2bbd4ab49

Author: Vincent Povirk <vincent at codeweavers.com>
Date:   Thu Apr 17 17:32:27 2014 -0500

shell32/tests: Use SEE_MASK_NO_CONSOLE with ShellExecuteExA.

---

 dlls/shell32/tests/shlexec.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/shell32/tests/shlexec.c b/dlls/shell32/tests/shlexec.c
index 9f4b1a3..e3169c8 100644
--- a/dlls/shell32/tests/shlexec.c
+++ b/dlls/shell32/tests/shlexec.c
@@ -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;




More information about the wine-cvs mailing list