diff options
author | Michael Bien <[email protected]> | 2010-03-30 14:01:15 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-03-30 14:01:15 +0200 |
commit | 44b93b2d63539bca4c7e3facfee90d5f3bbb67cf (patch) | |
tree | 528cb1b0c5e965cc07cfd390196caf05aba9aa7f /make/stub_includes/opengl | |
parent | f250183bc3d8eb4ef87cecb3311eae554dcafe53 (diff) | |
parent | 62dcd1a3fe345c4d2c0e42472d2c7646fe224e8f (diff) |
Merge branch 'master' of github.com:mbien/jogl
Diffstat (limited to 'make/stub_includes/opengl')
-rw-r--r-- | make/stub_includes/opengl/gl3-64bit-types.h | 2 |
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 |