diff options
author | Ted Jump <[email protected]> | 1999-09-19 02:03:18 +0000 |
---|---|---|
committer | Ted Jump <[email protected]> | 1999-09-19 02:03:18 +0000 |
commit | 725ec81ae80e024df4a5490405dbfbc598533e6e (patch) | |
tree | ac0115bd0729dea1f6ffde983f85e266b13e851e /include/GL/glu.h | |
parent | 1bf9dfaf5dea61e3d33a69b0a549be54ef6d74df (diff) |
More Win32 build compliance fixups
Diffstat (limited to 'include/GL/glu.h')
-rw-r--r-- | include/GL/glu.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/include/GL/glu.h b/include/GL/glu.h index 01d630ef8b1..6861a171908 100644 --- a/include/GL/glu.h +++ b/include/GL/glu.h @@ -1,4 +1,4 @@ -/* $Id: glu.h,v 1.8 1999/09/17 12:21:36 brianp Exp $ */ +/* $Id: glu.h,v 1.9 1999/09/19 02:03:18 tjump Exp $ */ /* * Mesa 3-D graphics library @@ -23,6 +23,9 @@ /* * $Log: glu.h,v $ + * Revision 1.9 1999/09/19 02:03:18 tjump + * More Win32 build compliance fixups + * * Revision 1.8 1999/09/17 12:21:36 brianp * glGetProcAddressEXT changes to accomodate Win32 and non-Win32 * @@ -511,15 +514,11 @@ GLUAPI const GLubyte* GLAPIENTRY gluGetString( GLenum name ); * which uses this extension yet! It may change! */ #define GLU_EXT_get_proc_address 1 -#ifdef __WIN32__ - typedef (void (GLAPIENTRY *gluProcAddress))(); - gluProcAddress GLAPIENTRY gluGetProcAddressEXT(const GLubyte *procName); -#else - GLUAPI void GLAPIENTRY (*gluGetProcAddressEXT(const GLubyte *procName))(); +#ifdef GLU_EXT_get_proc_address +GLUAPI void (GLAPIENTRY *glGetProcAddressEXT(const GLubyte *procName))(); #endif - #if defined(__BEOS__) || defined(__QUICKDRAW__) #pragma export off #endif |