From db21f1c84f32d4bd7696774acb86f5480f5138cd Mon Sep 17 00:00:00 2001 From: Karl Schultz Date: Wed, 11 May 2005 22:01:20 +0000 Subject: 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. --- include/GL/gl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/GL') diff --git a/include/GL/gl.h b/include/GL/gl.h index 1426df481c..335e454555 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 ); -- cgit v1.2.3