From a3a640171f12de91202b5dc4777ffd53be10a0aa Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Sat, 16 Sep 2006 04:10:56 +0000 Subject: added #ifdef tests for Windows for int64_t, uint64_t --- include/GL/glext.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/GL/glext.h b/include/GL/glext.h index c5111b895c..8cc4502ac9 100644 --- a/include/GL/glext.h +++ b/include/GL/glext.h @@ -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 #else -- cgit v1.2.3