Changeset ae029eca9ce947104de2d85299e16a108aa83a76

Show
Ignore:
Timestamp:
08/30/05 13:59:24 (3 years ago)
Author:
Christophe Massiot <massiot@videolan.org>
git-committer:
Christophe Massiot <massiot@videolan.org> 1125403164 +0000
git-parent:

[195e32376d6f63f0097bfd54a1500a62db3ff4ad]

git-author:
Christophe Massiot <massiot@videolan.org> 1125403164 +0000
Message:
  • src/extras/libc.c:vlc_execve() : Do not open a new window under Win32.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/extras/libc.c

    r6476293 rae029ec  
    988988    siStartInfo.hStdOutput = hChildStdoutWr; 
    989989    siStartInfo.hStdInput = hChildStdinRd; 
    990     siStartInfo.dwFlags |= STARTF_USESTDHANDLES; 
     990    siStartInfo.wShowWindow = SW_HIDE; 
     991    siStartInfo.dwFlags |= STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW; 
    991992 
    992993    /* Set up the command line. */