Commit d2a06242 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '3526ab89'

* commit '3526ab89':
  qt-faststart: Undefine fseeko/ftello before defining them
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 8f3caf52 3526ab89
......@@ -30,10 +30,14 @@
#include <string.h>
#ifdef __MINGW32__
#undef fseeko
#define fseeko(x, y, z) fseeko64(x, y, z)
#undef ftello
#define ftello(x) ftello64(x)
#elif defined(_WIN32)
#undef fseeko
#define fseeko(x, y, z) _fseeki64(x, y, z)
#undef ftello
#define ftello(x) _ftelli64(x)
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment