#define GLAPIENTRYP __stdcall *
to
#define GLAPIENTRYP GLAPIENTRY *
These two defs end up doing the same thing, but the compiler can squawk
because they look different.  Also matches the way it is declared in gl.h.
Do same for GLCALLBACKP.
This commit is contained in:
Karl Schultz 2003-12-04 20:55:58 +00:00
parent fed1cda2ad
commit 9b9a57a25c
1 changed files with 2 additions and 2 deletions

View File

@ -107,9 +107,9 @@
# define WGLAPI __declspec(dllimport)
# endif /* _STATIC_MESA support */
# define GLAPIENTRY __stdcall
# define GLAPIENTRYP __stdcall *
# define GLAPIENTRYP GLAPIENTRY *
# define GLCALLBACK __stdcall
# define GLCALLBACKP __stdcall *
# define GLCALLBACKP GLCALLBACK *
# if defined(__CYGWIN__)
# define GLCALLBACKPCAST *
# else