summaryrefslogtreecommitdiff
path: root/include/GL/glext.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/GL/glext.h')
-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