af505de858be1957547715140d750852a9734b20
max
  Mon Apr 30 10:16:29 2012 -0700
adding themes to browser: config option and background image overwrite
diff --git src/hg/inc/hgConfig.h src/hg/inc/hgConfig.h
index 954129b..55e03ce 100644
--- src/hg/inc/hgConfig.h
+++ src/hg/inc/hgConfig.h
@@ -23,19 +23,22 @@
 char *cfgOption2(char *prefix, char *suffix);
 /* Return the option with the given two-part name, formed from prefix.suffix.
  * Return NULL if it doesn't exist. */
 
 char* cfgOptionDefault2(char *prefix, char *suffix, char* def);
 /* Return the option with the given two-part name, formed from prefix.suffix,
  * or the given default if it doesn't exist. */
 
 char *cfgVal(char *name);
 /* Return option with given name.  Squawk and die if it
  * doesn't exist. */
 
 struct slName *cfgNames();
 /* get list of names in config file. slFreeList when finished */
 
+struct slName *cfgNamesWithPrefix();
+/* get list of names in config file with prefix. slFreeList when finished */
+
 unsigned long cfgModTime();
 /* Return modification time of config file */
 
 #endif