Only #define lseek to _lseeki64 on MinGW, not MinGW CE.

This fixes compilation on WinCE, which does not support _lseeki64.
patch by Ismail Dönmez, ismail namtrac org

Originally committed as revision 19425 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
İsmail Dönmez 2009-07-13 17:16:36 +00:00 committed by Diego Biurrun
parent 3e962f315b
commit b504ce57ed
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@
#include "config.h"
#ifdef __MINGW32__
#if defined(__MINGW32__) && !defined(__MINGW32CE__)
# include <fcntl.h>
# define lseek(f,p,w) _lseeki64((f), (p), (w))
#endif