diff options
Diffstat (limited to 'include/GLES2/gl2platform.h')
-rw-r--r-- | include/GLES2/gl2platform.h | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/include/GLES2/gl2platform.h b/include/GLES2/gl2platform.h index 62798c34fe..077571e4ea 100644 --- a/include/GLES2/gl2platform.h +++ b/include/GLES2/gl2platform.h @@ -45,25 +45,22 @@ extern "C" { * Definition of GL_APICALL and GL_APIENTRY *-----------------------------------------------------------------------*/ -#if defined(_WIN32) || defined(__VC32__) /* Win32 */ -# if defined (_DLL_EXPORTS) +#ifdef _WIN32 +# ifdef __GL_EXPORTS # define GL_APICALL __declspec(dllexport) # else # define GL_APICALL __declspec(dllimport) # endif -#elif defined (__ARMCC_VERSION) /* ADS */ -# define GL_APICALL -#elif defined (__SYMBIAN32__) && defined (__GCC32__) /* Symbian GCC */ -# define GL_APICALL __declspec(dllexport) -#elif defined (__GNUC__) /* GCC dependencies (kludge) */ -# define GL_APICALL -#endif - -#if !defined (GL_APICALL) -# error Unsupported platform! +# define GLAPIENTRY __stdcall +#else +# ifdef __GL_EXPORTS +# define GL_APICALL +# else +# define GL_APICALL extern +# endif #endif -#define GL_APIENTRY +#define GL_APIENTRY #ifdef __cplusplus } |