1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/media/libnestegg/include/nestegg-stdint.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,10 @@ 1.4 +#ifdef _WIN32 1.5 +typedef __int64 int64_t; 1.6 +typedef unsigned __int64 uint64_t; 1.7 +#if !defined(INT64_MAX) 1.8 +#define INT64_MAX 9223372036854775807LL 1.9 +#endif 1.10 +#else 1.11 +#include <stdint.h> 1.12 +#endif 1.13 +