Only use __int64 on MSVC, not on all win32 compilers

Mingw32 doesn't define the __int64 types.

Change-Id: Ia45add37be1bf85abde664fd6e382334a6bb4498
This commit is contained in:
Martin Storsjo 2012-07-06 17:14:12 +03:00
parent 2228e36059
commit 52396724f8
1 changed files with 1 additions and 1 deletions

View File

@ -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