Index: trunk/psLib/src/collections/psHash.h
===================================================================
--- trunk/psLib/src/collections/psHash.h	(revision 4315)
+++ trunk/psLib/src/collections/psHash.h	(revision 4343)
@@ -11,6 +11,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-18 02:30:49 $
+ *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-22 03:00:27 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -51,5 +51,5 @@
 
 /// Insert entry into table.
-psBool psHashAdd(
+bool psHashAdd(
     psHash* table,                     ///< The table to insert in.
     const char *key,                   ///< The key to use.
@@ -59,5 +59,5 @@
 /// Lookup key in table.
 psPtr psHashLookup(
-    psHash* table,                     ///< The table to lookup key in.
+    const psHash* table,               ///< The table to lookup key in.
     const char *key                    ///< The key to lookup.
 );
@@ -79,5 +79,5 @@
  */
 psArray* psHashToArray(
-    psHash* table                 ///< The table to convert to psArray.
+    const psHash* table                ///< The table to convert to psArray.
 );
 
