]> git.sesse.net Git - vlc/commitdiff
Try to fix the obnoxious _stati64 warning
authorRémi Denis-Courmont <rem@videolan.org>
Sun, 12 Nov 2006 20:12:29 +0000 (20:12 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Sun, 12 Nov 2006 20:12:29 +0000 (20:12 +0000)
include/vlc_common.h

index 6c691ccd5f78db6b8bc149f92ed1af484ca67f52..f829027432a5c5fc4043be6406d8268e2273fa5b 100644 (file)
@@ -447,6 +447,13 @@ typedef struct update_iterator_t update_iterator_t;
 /* Meta engine */
 typedef struct meta_engine_t meta_engine_t;
 
+/* stat/lstat/fstat */
+#ifdef WIN32
+struct _stati64;
+#else
+struct stat;
+#endif
+
 /*****************************************************************************
  * Variable callbacks
  *****************************************************************************/