From bdb70f97162c62ced2e5c06fe3f613a051f4d939 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Mon, 22 Aug 2011 21:05:00 +0300 Subject: [PATCH] Simplify and fix WinCE build --- src/config/help.c | 20 ++++---------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/src/config/help.c b/src/config/help.c index 6e8a3764af..41a4d594e3 100644 --- a/src/config/help.c +++ b/src/config/help.c @@ -40,6 +40,9 @@ #if defined( WIN32 ) && !defined( UNDER_CE ) static void ShowConsole (void); static void PauseConsole (void); +#else +# define ShowConsole() (void)0 +# define PauseConsole() (void)0 #endif static void Help (vlc_object_t *, const char *); @@ -162,9 +165,7 @@ static const char vlc_usage[] = N_( static void Help (vlc_object_t *p_this, char const *psz_help_name) { -#if defined (WIN32) && !defined (UNDER_CE) ShowConsole(); -#endif if( psz_help_name && !strcmp( psz_help_name, "help" ) ) { @@ -189,9 +190,7 @@ static void Help (vlc_object_t *p_this, char const *psz_help_name) Usage( p_this, psz_help_name ); } -#if defined (WIN32) && !defined (UNDER_CE) PauseConsole(); -#endif } /***************************************************************************** @@ -729,10 +728,8 @@ static void ListModules (vlc_object_t *p_this, bool b_verbose) bool b_color = var_InheritBool( p_this, "color" ); -#ifdef WIN32 -# ifndef UNDER_CE ShowConsole(); -# endif +#ifdef WIN32 b_color = false; // don't put color control codes in a .txt file #else if( !isatty( 1 ) ) @@ -782,10 +779,7 @@ static void ListModules (vlc_object_t *p_this, bool b_verbose) } } module_list_free (list); - -#if defined (WIN32) && !defined (UNDER_CE) PauseConsole(); -#endif } /***************************************************************************** @@ -795,20 +789,14 @@ static void ListModules (vlc_object_t *p_this, bool b_verbose) *****************************************************************************/ static void Version( void ) { -#if defined (WIN32) && !defined (UNDER_CE) ShowConsole(); -#endif - utf8_fprintf( stdout, _("VLC version %s (%s)\n"), VERSION_MESSAGE, psz_vlc_changeset ); utf8_fprintf( stdout, _("Compiled by %s on %s (%s)\n"), VLC_CompileBy(), VLC_CompileHost(), __DATE__" "__TIME__ ); utf8_fprintf( stdout, _("Compiler: %s\n"), VLC_Compiler() ); utf8_fprintf( stdout, "%s", LICENSE_MSG ); - -#ifdef WIN32 /* Pause the console because it's destroyed when we exit */ PauseConsole(); -#endif } #if defined (WIN32) && !defined (UNDER_CE) -- 2.39.5