diff -r 000000000000 -r 6474c204b198 media/libnestegg/include/nestegg-stdint.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/media/libnestegg/include/nestegg-stdint.h Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,10 @@ +#ifdef _WIN32 +typedef __int64 int64_t; +typedef unsigned __int64 uint64_t; +#if !defined(INT64_MAX) +#define INT64_MAX 9223372036854775807LL +#endif +#else +#include +#endif +