From: Brian Paul Date: Sat, 16 Sep 2006 04:10:56 +0000 (+0000) Subject: added #ifdef tests for Windows for int64_t, uint64_t X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a3a640171f12de91202b5dc4777ffd53be10a0aa;p=mesa.git added #ifdef tests for Windows for int64_t, uint64_t --- diff --git a/include/GL/glext.h b/include/GL/glext.h index c5111b895c8..8cc4502ac95 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