Commit 233d50b2 authored by Martin Storsjö's avatar Martin Storsjö Committed by Diego Biurrun

qt-faststart: Do not try to use fancy 64-bit seeking functions on mingw32ce

These functions are not available on mingw32ce.
Signed-off-by: 's avatarDiego Biurrun <diego@biurrun.de>
parent 537b5b77
......@@ -29,7 +29,10 @@
#include <inttypes.h>
#include <string.h>
#ifdef __MINGW32__
#ifdef __MINGW32CE__
#define fseeko(x, y, z) fseek(x, y, z)
#define ftello(x) ftell(x)
#elif defined(__MINGW32__)
#undef fseeko
#define fseeko(x, y, z) fseeko64(x, y, z)
#undef ftello
......
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