summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTed Jump <tjump@users.sourceforge.net>1999-09-17 02:44:19 +0000
committerTed Jump <tjump@users.sourceforge.net>1999-09-17 02:44:19 +0000
commit75d7ac4a75e6f3945414e4c120f309ad572ea4a0 (patch)
treea9fe3a85ed9cb3bcbf8020d3ea12dd622379b77e /include
parent26aef1949ee8701aee0d8066336c954474f3d114 (diff)
downloadglu-75d7ac4a75e6f3945414e4c120f309ad572ea4a0.tar.gz
I changed the xxxGetProcAddressEXT function declarations to be more
MSVC friendly. Brianp - could you verify that they describe and operate as intended on Linux/ETC platforms?
Diffstat (limited to 'include')
-rw-r--r--include/GL/glu.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/include/GL/glu.h b/include/GL/glu.h
index 3ed121f..43727bc 100644
--- a/include/GL/glu.h
+++ b/include/GL/glu.h
@@ -1,4 +1,4 @@
-/* $Id: glu.h,v 1.6 1999/09/16 16:54:22 brianp Exp $ */
+/* $Id: glu.h,v 1.7 1999/09/17 02:44:19 tjump Exp $ */
/*
* Mesa 3-D graphics library
@@ -23,6 +23,11 @@
/*
* $Log: glu.h,v $
+ * Revision 1.7 1999/09/17 02:44:19 tjump
+ * I changed the xxxGetProcAddressEXT function declarations to be more
+ * MSVC friendly. Brianp - could you verify that they describe and operate
+ * as intended on Linux/ETC platforms?
+ *
* Revision 1.6 1999/09/16 16:54:22 brianp
* GLU_EXT_get_proc_address clean-up
*
@@ -503,7 +508,8 @@ GLUAPI const GLubyte* GLAPIENTRY gluGetString( GLenum name );
* which uses this extension yet! It may change!
*/
#define GLU_EXT_get_proc_address 1
-GLUAPI void GLAPIENTRY (*gluGetProcAddressEXT(const GLubyte *procName))();
+typedef (GLAPIENTRY *gluProcAddress)();
+gluProcAddress GLAPIENTRY gluGetProcAddressEXT(const GLubyte *procName);