From 955f1293277cd10ff24e60e7b73e95c16a4eaea3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sun, 12 Nov 2006 20:12:29 +0000 Subject: [PATCH] Try to fix the obnoxious _stati64 warning --- include/vlc_common.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/vlc_common.h b/include/vlc_common.h index 6c691ccd5f..f829027432 100644 --- a/include/vlc_common.h +++ b/include/vlc_common.h @@ -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 *****************************************************************************/ -- 2.39.2