mirror of
https://github.com/nigels-com/glew.git
synced 2024-11-22 05:45:07 +00:00
Fix for ID: 3107864 - __int64 problem with bcc32
git-svn-id: https://glew.svn.sourceforge.net/svnroot/glew/trunk/glew@637 783a27ee-832a-0410-bc00-9f386506c6dd
This commit is contained in:
parent
97b6a17cad
commit
bdc94ea4c2
@ -167,14 +167,12 @@ typedef float GLclampf;
|
||||
typedef double GLdouble;
|
||||
typedef double GLclampd;
|
||||
typedef void GLvoid;
|
||||
#if defined(_MSC_VER)
|
||||
# if _MSC_VER < 1400
|
||||
#if defined(_MSC_VER) && _MSC_VER < 1400
|
||||
typedef __int64 GLint64EXT;
|
||||
typedef unsigned __int64 GLuint64EXT;
|
||||
# else
|
||||
#elif defined(_MSC_VER) || defined(__BORLANDC__)
|
||||
typedef signed long long GLint64EXT;
|
||||
typedef unsigned long long GLuint64EXT;
|
||||
# endif
|
||||
#else
|
||||
# if defined(__MINGW32__) || defined(__CYGWIN__)
|
||||
#include <inttypes.h>
|
||||
|
Loading…
Reference in New Issue
Block a user