Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
f7905c0b
Commit
f7905c0b
authored
Oct 28, 2013
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
help: fix Windows Store build
parent
a43798f3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
5 deletions
+9
-5
src/config/help.c
src/config/help.c
+9
-5
No files found.
src/config/help.c
View file @
f7905c0b
...
...
@@ -35,19 +35,23 @@
#include "config/configuration.h"
#include "libvlc.h"
#if defined( _WIN32 )
&& !VLC_WINSTORE_APP
#if defined( _WIN32 )
# include <vlc_charset.h>
static
void
ShowConsole
(
void
);
static
void
PauseConsole
(
void
);
# define wcwidth(cp) (cp, 1)
/* LOL */
#else
# define ShowConsole() (void)0
# define PauseConsole() (void)0
# include <unistd.h>
# include <termios.h>
# include <sys/ioctl.h>
#endif
#if defined( _WIN32 ) && !VLC_WINSTORE_APP
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
*
);
static
void
Usage
(
vlc_object_t
*
,
const
char
*
);
static
void
Version
(
void
);
...
...
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