From: Karl Schultz Date: Wed, 11 May 2005 22:01:20 +0000 (+0000) Subject: The "P" suffix on APIENTRY and GLAPIENTRY is to be used for pointers to X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=db21f1c84f32d4bd7696774acb86f5480f5138cd;p=mesa.git The "P" suffix on APIENTRY and GLAPIENTRY is to be used for pointers to functions, not for functions that return pointers. Restore protoype for glGetString back to its correct form. --- diff --git a/include/GL/gl.h b/include/GL/gl.h index 1426df481c2..335e454555e 100644 --- a/include/GL/gl.h +++ b/include/GL/gl.h @@ -104,7 +104,7 @@ #define APIENTRY GLAPIENTRY #endif -/* "P" suffix for when function returns a pointer */ +/* "P" suffix to be used for a pointer to a function */ #ifndef APIENTRYP #define APIENTRYP APIENTRY * #endif @@ -853,7 +853,7 @@ GLAPI GLint GLAPIENTRY glRenderMode( GLenum mode ); GLAPI GLenum GLAPIENTRY glGetError( void ); -GLAPI const GLubyte GLAPIENTRYP glGetString( GLenum name ); +GLAPI const GLubyte * GLAPIENTRY glGetString( GLenum name ); GLAPI void GLAPIENTRY glFinish( void );