Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
bdb70f97
Commit
bdb70f97
authored
Aug 22, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify and fix WinCE build
parent
8c3bda62
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
16 deletions
+4
-16
src/config/help.c
src/config/help.c
+4
-16
No files found.
src/config/help.c
View file @
bdb70f97
...
@@ -40,6 +40,9 @@
...
@@ -40,6 +40,9 @@
#if defined( WIN32 ) && !defined( UNDER_CE )
#if defined( WIN32 ) && !defined( UNDER_CE )
static
void
ShowConsole
(
void
);
static
void
ShowConsole
(
void
);
static
void
PauseConsole
(
void
);
static
void
PauseConsole
(
void
);
#else
# define ShowConsole() (void)0
# define PauseConsole() (void)0
#endif
#endif
static
void
Help
(
vlc_object_t
*
,
const
char
*
);
static
void
Help
(
vlc_object_t
*
,
const
char
*
);
...
@@ -162,9 +165,7 @@ static const char vlc_usage[] = N_(
...
@@ -162,9 +165,7 @@ static const char vlc_usage[] = N_(
static
void
Help
(
vlc_object_t
*
p_this
,
char
const
*
psz_help_name
)
static
void
Help
(
vlc_object_t
*
p_this
,
char
const
*
psz_help_name
)
{
{
#if defined (WIN32) && !defined (UNDER_CE)
ShowConsole
();
ShowConsole
();
#endif
if
(
psz_help_name
&&
!
strcmp
(
psz_help_name
,
"help"
)
)
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)
...
@@ -189,9 +190,7 @@ static void Help (vlc_object_t *p_this, char const *psz_help_name)
Usage
(
p_this
,
psz_help_name
);
Usage
(
p_this
,
psz_help_name
);
}
}
#if defined (WIN32) && !defined (UNDER_CE)
PauseConsole
();
PauseConsole
();
#endif
}
}
/*****************************************************************************
/*****************************************************************************
...
@@ -729,10 +728,8 @@ static void ListModules (vlc_object_t *p_this, bool b_verbose)
...
@@ -729,10 +728,8 @@ static void ListModules (vlc_object_t *p_this, bool b_verbose)
bool
b_color
=
var_InheritBool
(
p_this
,
"color"
);
bool
b_color
=
var_InheritBool
(
p_this
,
"color"
);
#ifdef WIN32
# ifndef UNDER_CE
ShowConsole
();
ShowConsole
();
#
endif
#
ifdef WIN32
b_color
=
false
;
// don't put color control codes in a .txt file
b_color
=
false
;
// don't put color control codes in a .txt file
#else
#else
if
(
!
isatty
(
1
)
)
if
(
!
isatty
(
1
)
)
...
@@ -782,10 +779,7 @@ static void ListModules (vlc_object_t *p_this, bool b_verbose)
...
@@ -782,10 +779,7 @@ static void ListModules (vlc_object_t *p_this, bool b_verbose)
}
}
}
}
module_list_free
(
list
);
module_list_free
(
list
);
#if defined (WIN32) && !defined (UNDER_CE)
PauseConsole
();
PauseConsole
();
#endif
}
}
/*****************************************************************************
/*****************************************************************************
...
@@ -795,20 +789,14 @@ static void ListModules (vlc_object_t *p_this, bool b_verbose)
...
@@ -795,20 +789,14 @@ static void ListModules (vlc_object_t *p_this, bool b_verbose)
*****************************************************************************/
*****************************************************************************/
static
void
Version
(
void
)
static
void
Version
(
void
)
{
{
#if defined (WIN32) && !defined (UNDER_CE)
ShowConsole
();
ShowConsole
();
#endif
utf8_fprintf
(
stdout
,
_
(
"VLC version %s (%s)
\n
"
),
VERSION_MESSAGE
,
utf8_fprintf
(
stdout
,
_
(
"VLC version %s (%s)
\n
"
),
VERSION_MESSAGE
,
psz_vlc_changeset
);
psz_vlc_changeset
);
utf8_fprintf
(
stdout
,
_
(
"Compiled by %s on %s (%s)
\n
"
),
utf8_fprintf
(
stdout
,
_
(
"Compiled by %s on %s (%s)
\n
"
),
VLC_CompileBy
(),
VLC_CompileHost
(),
__DATE__
" "
__TIME__
);
VLC_CompileBy
(),
VLC_CompileHost
(),
__DATE__
" "
__TIME__
);
utf8_fprintf
(
stdout
,
_
(
"Compiler: %s
\n
"
),
VLC_Compiler
()
);
utf8_fprintf
(
stdout
,
_
(
"Compiler: %s
\n
"
),
VLC_Compiler
()
);
utf8_fprintf
(
stdout
,
"%s"
,
LICENSE_MSG
);
utf8_fprintf
(
stdout
,
"%s"
,
LICENSE_MSG
);
#ifdef WIN32
/* Pause the console because it's destroyed when we exit */
PauseConsole
();
PauseConsole
();
#endif
}
}
#if defined (WIN32) && !defined (UNDER_CE)
#if defined (WIN32) && !defined (UNDER_CE)
...
...
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