Commit a950a071 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Set the Win32 console title

parent 90a0020f
...@@ -1828,6 +1828,7 @@ static void ShowConsole( vlc_bool_t b_dofile ) ...@@ -1828,6 +1828,7 @@ static void ShowConsole( vlc_bool_t b_dofile )
* Unicode/locale subsystem. By default, we have the obsolecent OEM code * Unicode/locale subsystem. By default, we have the obsolecent OEM code
* page (e.g. CP437 or CP850). */ * page (e.g. CP437 or CP850). */
SetConsoleOutputCP (GetACP ()); SetConsoleOutputCP (GetACP ());
SetConsoleTitle ("VLC media player version "PACKAGE_VERSION);
freopen( "CONOUT$", "w", stderr ); freopen( "CONOUT$", "w", stderr );
freopen( "CONIN$", "r", stdin ); freopen( "CONIN$", "r", stdin );
......
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