Commit ae029eca authored by Christophe Massiot's avatar Christophe Massiot

* src/extras/libc.c:vlc_execve() : Do not open a new window under Win32.

parent 195e3237
...@@ -987,7 +987,8 @@ int __vlc_execve( vlc_object_t *p_object, int i_argc, char **ppsz_argv, ...@@ -987,7 +987,8 @@ int __vlc_execve( vlc_object_t *p_object, int i_argc, char **ppsz_argv,
siStartInfo.hStdError = hChildStdoutWr; siStartInfo.hStdError = hChildStdoutWr;
siStartInfo.hStdOutput = hChildStdoutWr; siStartInfo.hStdOutput = hChildStdoutWr;
siStartInfo.hStdInput = hChildStdinRd; siStartInfo.hStdInput = hChildStdinRd;
siStartInfo.dwFlags |= STARTF_USESTDHANDLES; siStartInfo.wShowWindow = SW_HIDE;
siStartInfo.dwFlags |= STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
/* Set up the command line. */ /* Set up the command line. */
psz_cmd = malloc(32768); psz_cmd = malloc(32768);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment