diff options
author | Zhang <[email protected]> | 2007-07-27 11:19:35 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-07-27 11:19:35 -0600 |
commit | 35f35294cd5cc3ca32354b1de0e398ad73c70716 (patch) | |
tree | 5f495f0672e26d59a39bbcf8f3f1fc8151a22432 /include/GL/glut.h | |
parent | 0fb0d9715c9bcdcc3437a64a0f03c1c1153e9f29 (diff) |
more Mingw32 fixes
Diffstat (limited to 'include/GL/glut.h')
-rw-r--r-- | include/GL/glut.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/GL/glut.h b/include/GL/glut.h index e286349f9b0..137b8efa13a 100644 --- a/include/GL/glut.h +++ b/include/GL/glut.h @@ -112,7 +112,7 @@ extern _CRTIMP void __cdecl exit(int); and redifinition of Windows system defs, also removes requirement of pretty much any standard windows header from this file */ -#if (_MSC_VER >= 800) || defined(_STDCALL_SUPPORTED) || defined(__CYGWIN32__) +#if (_MSC_VER >= 800) || defined(__MINGW32__) || defined(_STDCALL_SUPPORTED) || defined(__CYGWIN32__) # define GLUTAPIENTRY __stdcall #else # define GLUTAPIENTRY |