Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
0390618b
Commit
0390618b
authored
Oct 22, 2005
by
Scott Caudle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msw ShowConsole() - enable previously provided msg on console for --help file output.
parent
989a7bdb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/libvlc.c
src/libvlc.c
+3
-3
No files found.
src/libvlc.c
View file @
0390618b
...
@@ -2447,6 +2447,9 @@ static void ShowConsole( void )
...
@@ -2447,6 +2447,9 @@ static void ShowConsole( void )
AllocConsole
();
AllocConsole
();
freopen
(
"CONOUT$"
,
"w"
,
stderr
);
freopen
(
"CONIN$"
,
"r"
,
stdin
);
if
(
(
f_help
=
fopen
(
"vlc-help.txt"
,
"wt"
))
)
if
(
(
f_help
=
fopen
(
"vlc-help.txt"
,
"wt"
))
)
{
{
fclose
(
f_help
);
fclose
(
f_help
);
...
@@ -2456,9 +2459,6 @@ static void ShowConsole( void )
...
@@ -2456,9 +2459,6 @@ static void ShowConsole( void )
else
freopen
(
"CONOUT$"
,
"w"
,
stdout
);
else
freopen
(
"CONOUT$"
,
"w"
,
stdout
);
freopen
(
"CONOUT$"
,
"w"
,
stderr
);
freopen
(
"CONIN$"
,
"r"
,
stdin
);
# endif
# endif
}
}
#endif
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment