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.
This commit is contained in:
Karl Schultz
2005-05-11 22:01:20 +00:00
parent 4e68f4c1fa
commit db21f1c84f

View File

@@ -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 );