Author: greatlrd
Date: Tue Nov 27 00:10:33 2007
New Revision: 30792
URL:
http://svn.reactos.org/svn/reactos?rev=30792&view=rev
Log:
sorry I forget update this file as well
Modified:
trunk/reactos/dll/3rdparty/mesa32/include/GL/glu.h
Modified: trunk/reactos/dll/3rdparty/mesa32/include/GL/glu.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/3rdparty/mesa32/includ…
==============================================================================
--- trunk/reactos/dll/3rdparty/mesa32/include/GL/glu.h (original)
+++ trunk/reactos/dll/3rdparty/mesa32/include/GL/glu.h Tue Nov 27 00:10:33 2007
@@ -44,22 +44,17 @@
#define GLAPIENTRYP GLAPIENTRY *
#endif
-#ifdef GLAPI
-#undef GLAPI
-#endif
-
-# if (defined(_MSC_VER) || defined(__MINGW32__)) && defined(BUILD_GLU32)
-# define GLAPI __declspec(dllexport)
-# elif (defined(_MSC_VER) || defined(__MINGW32__)) && defined(_DLL) /* tag
specifying we're building for DLL runtime support */
-# define GLAPI __declspec(dllimport)
-# else /* for use with static link lib build of Win32 edition only */
-# define GLAPI extern
-# endif /* _STATIC_MESA support */
-
-
-#ifndef GLAPI
-#define GLAPI
-#endif
+#if (defined(_MSC_VER) || defined(__MINGW32__)) && defined(BUILD_GLU32)
+# undef GLAPI
+# define GLAPI __declspec(dllexport)
+#elif (defined(_MSC_VER) || defined(__MINGW32__)) && defined(_DLL)
+/* tag specifying we're building for DLL runtime support */
+# undef GLAPI
+# define GLAPI __declspec(dllimport)
+#elif !defined(GLAPI)
+/* for use with static link lib build of Win32 edition only */
+# define GLAPI extern
+#endif /* _STATIC_MESA support */
#ifdef __cplusplus
extern "C" {