]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/os_support.h
We're using generic tag-to-ID functions, so specific codec_id assignments
[ffmpeg] / libavformat / os_support.h
index 2425b988c6d813296849875eb71a8fa580ae4691..e90f2c244fcdbf2c0fc81e313a135842b2937450 100644 (file)
 #define AVFORMAT_OS_SUPPORT_H
 
 /**
- * @file os_support.h
+ * @file
  * miscellaneous OS support macros and functions.
  */
 
 #include "config.h"
 
-#ifdef __MINGW32__
+#if defined(__MINGW32__) && !defined(__MINGW32CE__)
 #  include <fcntl.h>
 #  define lseek(f,p,w) _lseeki64((f), (p), (w))
-#endif
+#endif /* defined(__MINGW32__) && !defined(__MINGW32CE__) */
 
 static inline int is_dos_path(const char *path)
 {