aboutsummaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-03-29 04:51:09 +0200
committerSven Gothel <[email protected]>2010-03-29 04:51:09 +0200
commit49b145b3fb10b2dd070615c60613d69ca44d4548 (patch)
treec61ca65c17846f4ad69e41c51b612f91b1fd2b1d /make
parentbe452bbfbb101292350cc6a483471a0e98ac937b (diff)
Add uint32_t
Diffstat (limited to 'make')
-rw-r--r--make/stub_includes/opengl/gl3-64bit-types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/make/stub_includes/opengl/gl3-64bit-types.h b/make/stub_includes/opengl/gl3-64bit-types.h
index fc8b4ce05..64f12398a 100644
--- a/make/stub_includes/opengl/gl3-64bit-types.h
+++ b/make/stub_includes/opengl/gl3-64bit-types.h
@@ -25,12 +25,14 @@
#include <stdint.h>
#elif defined(__UNIXOS2__) || defined(__SOL64__)
typedef long int int32_t;
+ typedef unsigned long int uint32_t;
typedef long long int int64_t;
typedef unsigned long long int uint64_t;
#elif defined(WIN32) && defined(__GNUC__)
#include <stdint.h>
#elif defined(_WIN32)
typedef __int32 int32_t;
+ typedef unsigned __int32 uint32_t;
typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;
#else