Index: trunk/psModules/src/config/pmConfig.h
===================================================================
--- trunk/psModules/src/config/pmConfig.h	(revision 12906)
+++ trunk/psModules/src/config/pmConfig.h	(revision 12916)
@@ -5,6 +5,6 @@
  *  @author Eugene Magnier, IfA
  * 
- *  @version $Revision: 1.29 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2007-04-18 22:42:33 $
+ *  @version $Revision: 1.30 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-04-19 02:10:12 $
  *  Copyright 2005-2006 Institute for Astronomy, University of Hawaii
  */
@@ -61,7 +61,5 @@
 
 /// Allocator for pmConfig
-pmConfig *pmConfigAlloc(int *argc,      /// Number of command-line arguments
-                        char **argv     /// Command-line arguments
-                       );
+pmConfig *pmConfigAlloc();
 
 /// Set static configuration information
@@ -84,5 +82,5 @@
 pmConfig *pmConfigRead(int *argc,       ///< Number of command-line arguments
                        char **argv, ///< Array of command-line arguments
-                       char *defaultRecipe ///< name of top-level recipe for this program
+                       const char *defaultRecipe ///< name of top-level recipe for this program
                       );
 
@@ -143,5 +141,6 @@
 /// Given the 'file' and 'list' arguments (e.g., "-file" and "-list"), find the arguments associated with
 /// these words and interpret them as lists of files.  Return an array of the resulting filenames.
-psArray *pmConfigFileSets(pmConfig *config, ///< Configuration, containing command-line arguments
+psArray *pmConfigFileSets(int *argc,    ///< Number of arguments (I/O)
+                          char **argv,  ///< Array of arguments
                           const char *file, ///< CL argument specifying a filename
                           const char *list ///< CL argument specifying a text file with a list of filenames
@@ -153,5 +152,6 @@
 /// stuffs the array of filenames into the metadata under "name".
 bool pmConfigFileSetsMD(psMetadata *metadata, ///< Metadata into which to stuff the array
-                        pmConfig *config, ///< Configuration (which command-line arguments)
+                        int *argc,    ///< Number of arguments (I/O)
+                        char **argv,  ///< Array of arguments
                         const char *name, ///< Name for array in the metadata
                         const char *file, ///< CL argument specifying a filename
