projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8636981
)
added #ifdef tests for Windows for int64_t, uint64_t
author
Brian Paul
<brian.paul@tungstengraphics.com>
Sat, 16 Sep 2006 04:10:56 +0000
(
04:10
+0000)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Sat, 16 Sep 2006 04:10:56 +0000
(
04:10
+0000)
include/GL/glext.h
patch
|
blob
|
history
diff --git
a/include/GL/glext.h
b/include/GL/glext.h
index c5111b895c8354c976af765b2df53e2e0c358206..8cc4502ac955e32b7c2a3f88af55602504021a75 100644
(file)
--- 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