Commit 7ed64e79 authored by Martin Storsjo's avatar Martin Storsjo

Only use __int64 on MSVC, not on all win32 compilers

Mingw32 doesn't define the __int64 types.
parent c8776d22
......@@ -173,7 +173,7 @@ amm-info@iis.fraunhofer.de
/* Define 64 bit base integer type. */
#ifdef _WIN32
#ifdef _MSC_VER
typedef __int64 INT64;
typedef unsigned __int64 UINT64;
#else
......
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