added #ifdef tests for Windows for int64_t, uint64_t
authorBrian Paul <brian.paul@tungstengraphics.com>
Sat, 16 Sep 2006 04:10:56 +0000 (04:10 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Sat, 16 Sep 2006 04:10:56 +0000 (04:10 +0000)
include/GL/glext.h

index c5111b895c8354c976af765b2df53e2e0c358206..8cc4502ac955e32b7c2a3f88af55602504021a75 100644 (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