1
mirror of https://code.videolan.org/videolan/vlc synced 2024-10-03 01:31:53 +02:00

Win32: move 64 bits lseek define to vlc_fs.h

This commit is contained in:
Rafaël Carré 2012-06-18 17:21:45 +02:00
parent 9b53351ce0
commit 5a7311926d
3 changed files with 1 additions and 12 deletions

View File

@ -72,6 +72,7 @@ static inline void vlc_rewinddir( DIR *dir )
# ifndef fstat # ifndef fstat
# define fstat _fstati64 # define fstat _fstati64
# endif # endif
# define lseek _lseeki64
# endif # endif
#endif #endif

View File

@ -53,13 +53,6 @@
#endif #endif
#include <dirent.h> #include <dirent.h>
#if defined( WIN32 ) && !defined( UNDER_CE )
# ifdef lseek
# undef lseek
# endif
# define lseek _lseeki64
#endif
#include <vlc_common.h> #include <vlc_common.h>
#include "fs.h" #include "fs.h"
#include <vlc_input.h> #include <vlc_input.h>

View File

@ -58,11 +58,6 @@ See http://www.vdr-wiki.de/ and http://www.tvdr.de/ for more information.
#include <time.h> #include <time.h>
#include <errno.h> #include <errno.h>
#if defined( WIN32 ) && !defined( UNDER_CE )
# undef lseek
# define lseek _lseeki64
#endif
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc_plugin.h> #include <vlc_plugin.h>
#include <vlc_access.h> #include <vlc_access.h>