Commit f7905c0b authored by Rafaël Carré's avatar Rafaël Carré

help: fix Windows Store build

parent a43798f3
......@@ -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);
......
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