summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2005-02-16 19:53:13 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2005-02-16 19:53:13 +0000
commitefa71786b0bd981ed977c9ec811cbf4f73e55da3 (patch)
tree12b4dd0e0278b7b39705b1e9c74772e45afe20a3
parent60713563d9dccb9723946733600f01a901188ee8 (diff)
fix non-Win32 definition of GLUTAPIENTRY, remove some cruft
-rw-r--r--include/GL/glut.h28
1 files changed, 2 insertions, 26 deletions
diff --git a/include/GL/glut.h b/include/GL/glut.h
index c1b78aa4e5..23c740ee11 100644
--- a/include/GL/glut.h
+++ b/include/GL/glut.h
@@ -193,13 +193,11 @@ WGLAPI int GLAPIENTRY SetPixelFormat(HDC,int,const PIXELFORMATDESCRIPTOR *);
#else /* _WIN32 not defined */
/* Define GLUTAPIENTRY and GLUTCALLBACK to nothing if we aren't on Win32. */
-# define GLUTAPIENTRY
+# define GLUTAPIENTRY GLAPIENTRY
# define GLUTAPIENTRYV
-# define GLUT_APIENTRY_DEFINED
# define GLUTCALLBACK
# define GLUTAPI extern
-/* Prototype exit for the non-Win32 case (see above). */
-/*extern void exit(int); this screws up gcc -ansi -pedantic! */
+
#endif
@@ -747,26 +745,4 @@ GLUTAPI int GLUTAPIENTRY glutGameModeGet(GLenum mode);
}
#endif
-#if 0
-#ifdef GLUT_APIENTRY_DEFINED
-# undef GLUT_APIENTRY_DEFINED
-# undef APIENTRY
-#endif
-
-#ifdef GLUT_WINGDIAPI_DEFINED
-# undef GLUT_WINGDIAPI_DEFINED
-# undef WINGDIAPI
-#endif
-
-#ifdef GLUT_DEFINED___CDECL
-# undef GLUT_DEFINED___CDECL
-# undef __cdecl
-#endif
-
-#ifdef GLUT_DEFINED__CRTIMP
-# undef GLUT_DEFINED__CRTIMP
-# undef _CRTIMP
-#endif
-#endif
-
#endif /* __glut_h__ */