]> git.sesse.net Git - vlc/commitdiff
More useless code - at least at do try to understand what I commit
authorRémi Denis-Courmont <rem@videolan.org>
Sat, 1 Apr 2006 08:40:15 +0000 (08:40 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Sat, 1 Apr 2006 08:40:15 +0000 (08:40 +0000)
src/misc/unicode.c

index e29a69cc18c7c9b8189eabbb7bcc9354d21dadfb..c3c8d9f4611919f53ffe58fb8392f69f74e18146 100644 (file)
 # include <sys/stat.h>
 #endif
 
-#if defined( WIN32 ) && !defined( UNDER_CE )
-/* stat() support for large files on win32 */
-#   define stat _stati64
-#   define fstat(a,b) _fstati64(a,b)
-#endif
-
 #ifndef HAVE_LSTAT
 # define lstat( a, b ) stat(a, b)
 #endif
@@ -516,7 +510,6 @@ static int utf8_statEx( const char *filename, void *buf,
     }
     wpath[MAX_PATH] = L'\0';
 
-    /* struct _stat is just a silly Microsoft alias for struct stat */
     return _wstati64( wpath, (struct _stati64 *)buf );
 #endif
 }