Changeset ae029eca9ce947104de2d85299e16a108aa83a76
- 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
| r6476293 |
rae029ec |
|
| 988 | 988 | siStartInfo.hStdOutput = hChildStdoutWr; |
|---|
| 989 | 989 | siStartInfo.hStdInput = hChildStdinRd; |
|---|
| 990 | | siStartInfo.dwFlags |= STARTF_USESTDHANDLES; |
|---|
| | 990 | siStartInfo.wShowWindow = SW_HIDE; |
|---|
| | 991 | siStartInfo.dwFlags |= STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW; |
|---|
| 991 | 992 | |
|---|
| 992 | 993 | /* Set up the command line. */ |
|---|