projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f2b9fa0
)
handle 64-bit types for Windows.
author
Karl Schultz
<kschultz@freedesktop.org>
Thu, 8 Dec 2005 04:32:02 +0000
(
04:32
+0000)
committer
Karl Schultz
<kschultz@freedesktop.org>
Thu, 8 Dec 2005 04:32:02 +0000
(
04:32
+0000)
include/GL/gl.h
patch
|
blob
|
history
diff --git
a/include/GL/gl.h
b/include/GL/gl.h
index 75c616724443a25f7c4ef12e2dcf07a9984d2e1f..5b6733c851ffdf59797e2b2781cc9db82587014f 100644
(file)
--- a/
include/GL/gl.h
+++ b/
include/GL/gl.h
@@
-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;