summaryrefslogtreecommitdiff
path: root/include/GL
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2006-09-16 04:10:56 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2006-09-16 04:10:56 +0000
commita3a640171f12de91202b5dc4777ffd53be10a0aa (patch)
tree95f5b704901b4a1076c75b2456c0407f414a04e2 /include/GL
parent8636981646b81853283adf3d850e62a23d326763 (diff)
added #ifdef tests for Windows for int64_t, uint64_t
Diffstat (limited to 'include/GL')
-rw-r--r--include/GL/glext.h4
1 files changed, 4 insertions, 0 deletions
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 <stdint.h>
#else