diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2002-10-15 15:36:26 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2002-10-15 15:36:26 +0000 |
commit | f7657d037eb262ee6437d7714f709026f2ecea85 (patch) | |
tree | 2f2f20433f42130de98a8af289107ff0685de70d /src/mesa/main/imports.h | |
parent | d2ec14c4aacebd68a9918a9c2f280fa60eee8ebe (diff) |
make a few static function non-static for highpc.c
Diffstat (limited to 'src/mesa/main/imports.h')
-rw-r--r-- | src/mesa/main/imports.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index 2a19ff81d1..9363c4163e 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -1,4 +1,4 @@ -/* $Id: imports.h,v 1.4 2002/06/29 19:48:16 brianp Exp $ */ +/* $Id: imports.h,v 1.5 2002/10/15 15:36:26 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -53,6 +53,17 @@ _mesa_debug( const __GLcontext *ctx, const char *fmtString, ... ); extern void _mesa_printf( const __GLcontext *ctx, const char *fmtString, ... ); +extern int CAPI +_mesa_fprintf(__GLcontext *gc, void *stream, const char *fmt, ...); + +extern void * CAPI +_mesa_fopen(__GLcontext *gc, const char *path, const char *mode); + +extern int CAPI +_mesa_fclose(__GLcontext *gc, void *stream); + +extern char * CAPI +_mesa_getenv(__GLcontext *gc, const char *var); extern void _mesa_init_default_imports(__GLimports *imports, void *driverCtx); |