Index: trunk/psLib/src/collections/psHash.h
===================================================================
--- trunk/psLib/src/collections/psHash.h	(revision 4162)
+++ trunk/psLib/src/collections/psHash.h	(revision 4315)
@@ -11,6 +11,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-08 23:40:45 $
+ *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-18 02:30:49 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -47,29 +47,29 @@
 /// Allocate hash buckets in table.
 psHash* psHashAlloc(
-    psS32 nbucket                  ///< The number of buckets to allocate.
+    long nalloc                        ///< The number of buckets to allocate.
 );
 
 /// Insert entry into table.
 psBool psHashAdd(
-    psHash* table,                 ///< The table to insert in.
-    const char *key,               ///< The key to use.
-    psPtr data                     ///< The data to insert.
+    psHash* table,                     ///< The table to insert in.
+    const char *key,                   ///< The key to use.
+    psPtr data                         ///< The data to insert.
 );
 
 /// Lookup key in table.
 psPtr psHashLookup(
-    psHash* table,                 ///< The table to lookup key in.
-    const char *key                ///< The key to lookup.
+    psHash* table,                     ///< The table to lookup key in.
+    const char *key                    ///< The key to lookup.
 );
 
 /// Remove key from table.
-psBool psHashRemove(
-    psHash* table,                 ///< The table to lookup key in.
-    const char *key                ///< The key to lookup.
+bool psHashRemove(
+    psHash* table,                     ///< The table to lookup key in.
+    const char *key                    ///< The key to lookup.
 );
 
 /// List all keys in table.
 psList* psHashKeyList(
-    psHash* table                  ///< The table to list keys from..
+    const psHash* hash                 ///< The table to list keys from..
 );
 
@@ -79,5 +79,5 @@
  */
 psArray* psHashToArray(
-    psHash* table                  ///< The table to convert to psArray.
+    psHash* table                 ///< The table to convert to psArray.
 );
 
