Add GLAPIENTRY to typedef for callback functions (used by tessellator).

This is important now that we're using __stdcall instead of the (default)
__cdecl on WIN32.  This gets apps using the tessellator working again
on Windows.
This commit is contained in:
Karl Schultz 2001-09-21 20:39:03 +00:00
parent 38112f5b60
commit 445e3cbd0d

View file

@ -258,7 +258,7 @@ typedef struct GLUtesselator GLUtriangulatorObj;
#define GLU_TESS_MAX_COORD 1.0e150
/* Internal convenience typedefs */
typedef void (*_GLUfuncptr)();
typedef void (GLAPIENTRY *_GLUfuncptr)();
GLAPI void GLAPIENTRY gluBeginCurve (GLUnurbs* nurb);
GLAPI void GLAPIENTRY gluBeginPolygon (GLUtesselator* tess);