diff options
author | Jonathan White <jwhite@tungstengraphics.com> | 2008-07-16 16:10:57 -0600 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2008-07-16 16:11:38 -0600 |
commit | e4f3770690129dc1ea683fadbe07f1fbc49cf271 (patch) | |
tree | 1a4e8bf7daf0dbe6106c46c08fbdc7f07defbf89 /include/GL/gl.h | |
parent | ab8f838060c7d30b8b18cac600c4b1d97ecf3f6c (diff) |
mesa: WinCE fixes
Diffstat (limited to 'include/GL/gl.h')
-rw-r--r-- | include/GL/gl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/GL/gl.h b/include/GL/gl.h index c0cebec2ef..c9ef6136fa 100644 --- a/include/GL/gl.h +++ b/include/GL/gl.h @@ -58,7 +58,7 @@ # else /* for use with static link lib build of Win32 edition only */ # define GLAPI extern # endif /* _STATIC_MESA support */ -# if defined(__MINGW32__) && defined(GL_NO_STDCALL) /* The generated DLLs by MingW with STDCALL are not compatible with the ones done by Microsoft's compilers */ +# if defined(__MINGW32__) && defined(GL_NO_STDCALL) || defined(UNDER_CE) /* The generated DLLs by MingW with STDCALL are not compatible with the ones done by Microsoft's compilers */ # define GLAPIENTRY # else # define GLAPIENTRY __stdcall |