added #ifdef tests for Windows for int64_t, uint64_t

This commit is contained in:
Brian Paul 2006-09-16 04:10:56 +00:00
parent 8636981646
commit a3a640171f

View file

@ -3184,6 +3184,10 @@ typedef unsigned long long int uint64_t;
typedef long int int32_t;
typedef long long int int64_t;
typedef unsigned long long int uint64_t;
#elif defined(WIN32) && defined(_MSC_VER)
typedef long int int32_t;
typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;
#elif defined(WIN32) && defined(__GNUC__)
#include <stdint.h>
#else