From: Karl Schultz Date: Thu, 4 Dec 2003 20:55:58 +0000 (+0000) Subject: Change X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9b9a57a25cc63200a7ec86c96433924351674650;p=mesa.git Change #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. --- diff --git a/src/mesa/main/glheader.h b/src/mesa/main/glheader.h index dc2860fab8b..c0123d6cfe2 100644 --- a/src/mesa/main/glheader.h +++ b/src/mesa/main/glheader.h @@ -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