diff options
-rw-r--r-- | libavformat/os_support.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/os_support.h b/libavformat/os_support.h index e90f2c244f..a3cc40a850 100644 --- a/libavformat/os_support.h +++ b/libavformat/os_support.h @@ -32,6 +32,8 @@ #if defined(__MINGW32__) && !defined(__MINGW32CE__) # include <fcntl.h> # define lseek(f,p,w) _lseeki64((f), (p), (w)) +# define stat _stati64 +# define fstat(f,s) _fstati64((f), (s)) #endif /* defined(__MINGW32__) && !defined(__MINGW32CE__) */ static inline int is_dos_path(const char *path) |