Commit e53c94ea authored by Geoffroy Couprie's avatar Geoffroy Couprie

WinCE: cleaning my header inclusion mess

parent 13a184d0
......@@ -50,7 +50,7 @@ VLC_EXPORT( int, utf8_scandir, ( const char *dirname, char ***namelist, int (*se
VLC_EXPORT( int, utf8_mkdir, ( const char *filename, mode_t mode ) );
VLC_EXPORT( int, utf8_unlink, ( const char *filename ) );
#ifdef WIN32
#if defined( WIN32 ) && !defined( UNDER_CE )
# define stat _stati64
#endif
......
......@@ -376,18 +376,14 @@ typedef struct meta_engine_t meta_engine_t;
/* stat/lstat/fstat */
#ifdef WIN32
# ifdef UNDER_CE
# undef _STAT_DEFINED
# endif
#include <sys/stat.h>
# ifndef UNDER_CE
struct _stati64;
#define stat _stati64
#define fstat _fstati64
# else
# define stat _stat
# define fstat _fstat
# endif
#endif
/* You should otherwise use utf8_stat and utf8_lstat. */
#else
struct stat;
......
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