handle 64-bit types for Windows.
authorKarl Schultz <kschultz@freedesktop.org>
Thu, 8 Dec 2005 04:32:02 +0000 (04:32 +0000)
committerKarl Schultz <kschultz@freedesktop.org>
Thu, 8 Dec 2005 04:32:02 +0000 (04:32 +0000)
include/GL/gl.h

index 75c616724443a25f7c4ef12e2dcf07a9984d2e1f..5b6733c851ffdf59797e2b2781cc9db82587014f 100644 (file)
@@ -2239,6 +2239,9 @@ typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEATIPROC) (GLenum modeRGB, GLen
 #if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
    typedef long long int GLint64EXT;
    typedef unsigned long long int GLuint64EXT;
+#elif defined(_WIN32)
+   typedef __int64 GLint64EXT;
+   typedef unsigned __int64 GLuint64EXT;
 #else
    /* this might actually be a 32-bit type */
    typedef long int GLint64_EXT;