summaryrefslogtreecommitdiff
path: root/src/mesa/main/config.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-01-13 00:34:45 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-01-13 00:34:45 +0000
commit62c184258b7421b20e368ba574d1d4e330e5cb64 (patch)
tree886059c786a7cf0ffa83619047771f067d5c6295 /src/mesa/main/config.h
parenta0020435f58baef6a67d3c073b62ea6b1d143af1 (diff)
added gl_register_config_var() proto
Diffstat (limited to 'src/mesa/main/config.h')
-rw-r--r--src/mesa/main/config.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/mesa/main/config.h b/src/mesa/main/config.h
index 9affa9c4d3..b25cf58262 100644
--- a/src/mesa/main/config.h
+++ b/src/mesa/main/config.h
@@ -1,10 +1,10 @@
-/* $Id: config.h,v 1.2 1999/11/11 01:22:25 brianp Exp $ */
+/* $Id: config.h,v 1.3 2000/01/13 00:34:45 brianp Exp $ */
/*
* Mesa 3-D graphics library
* Version: 3.3
*
- * Copyright (C) 1999 Brian Paul All Rights Reserved.
+ * Copyright (C) 1999-2000 Brian Paul All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -197,6 +197,10 @@
typedef struct gl_context GLcontext;
-extern void gl_read_config_file( struct gl_context *ctx );
+extern void
+gl_read_config_file( struct gl_context *ctx );
+
+extern void
+gl_register_config_var(const char *name, void (*notify)( const char *, int ));
#endif