util: Mark the format description getter functions as const.
[mesa.git] / src / util / xmlconfig.h
index f7683a650e0df92eedcbd12771db99d493c3a12a..6cc3e8b59d785d32ee3270d8a93f57be56946b60 100644 (file)
@@ -32,6 +32,7 @@
 
 #include "util/mesa-sha1.h"
 #include "util/ralloc.h"
+#include <stdint.h>
 #include <string.h>
 
 #define STRING_CONF_MAXLEN 25
@@ -102,10 +103,12 @@ void driParseOptionInfo (driOptionCache *info,
                         const char *configOptions);
 /** \brief Initialize option cache from info and parse configuration files
  *
- * To be called in <driver>CreateContext. screenNum and driverName select
- * device sections. */
+ * To be called in <driver>CreateContext. screenNum, driverName,
+ * kernelDriverName and engineName select device sections. */
 void driParseConfigFiles (driOptionCache *cache, const driOptionCache *info,
-                         int screenNum, const char *driverName);
+                         int screenNum, const char *driverName,
+                         const char *kernelDriverName,
+                         const char *engineName, uint32_t engineVersion);
 /** \brief Destroy option info
  *
  * To be called in <driver>DestroyScreen */