diff options
author | Keith Whitwell <[email protected]> | 1999-10-08 09:27:09 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 1999-10-08 09:27:09 +0000 |
commit | 485f04074151686fa24d40e3eeb83029d3d8c425 (patch) | |
tree | d74a44fb266d6534fbbc060be7658f9deefea538 /src/mesa/main/extensions.h | |
parent | a7313e045dfd1ab439e8e01664d402ea9ce0a37e (diff) |
Fixed includes & added a few hooks for the DRI.kw-mesa-1
Diffstat (limited to 'src/mesa/main/extensions.h')
-rw-r--r-- | src/mesa/main/extensions.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/extensions.h b/src/mesa/main/extensions.h index 7663f43c208..ded2bae7976 100644 --- a/src/mesa/main/extensions.h +++ b/src/mesa/main/extensions.h @@ -1,4 +1,4 @@ -/* $Id: extensions.h,v 1.3 1999/09/11 11:48:11 brianp Exp $ */ +/* $Id: extensions.h,v 1.4 1999/10/08 09:27:10 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -38,7 +38,7 @@ /* Return 0 on success. */ extern int gl_extensions_add( struct gl_context *ctx, int state, - const char *name, void (*notify)() ); + const char *name, void (*notify)( void ) ); extern int gl_extensions_enable( struct gl_context *ctx, const char *name ); extern int gl_extensions_disable( struct gl_context *ctx, const char *name ); @@ -46,7 +46,7 @@ extern void gl_extensions_dtr( struct gl_context *ctx ); extern void gl_extensions_ctr( struct gl_context *ctx ); extern const char *gl_extensions_get_string( struct gl_context *ctx ); -extern GLfunction gl_GetProcAddress( GLcontext *ctx, const GLubyte *procName ); +extern void (*gl_GetProcAddress( GLcontext *ctx, const GLubyte *procName ))( void ); #endif |