Index: trunk/psLib/src/collections/psVector.h
===================================================================
--- trunk/psLib/src/collections/psVector.h	(revision 1982)
+++ trunk/psLib/src/collections/psVector.h	(revision 2204)
@@ -11,6 +11,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-10-06 21:30:52 $
+ *  @version $Revision: 1.25 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-10-27 00:57:31 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -33,6 +33,6 @@
 {
     psType type;                ///< Type of data.
-    unsigned int nalloc;        ///< Total number of elements available.
-    unsigned int n;             ///< Number of elements in use.
+    psU32 nalloc;        ///< Total number of elements available.
+    psU32 n;             ///< Number of elements in use.
 
     union {
@@ -49,5 +49,5 @@
         psC32* C32;             ///< Single-precision complex data.
         psC64* C64;             ///< Double-precision complex data.
-        psPTR V;                ///< Pointer to data.
+        psPtr V;                ///< Pointer to data.
     } data;                     ///< Union for data types.
 }
@@ -69,5 +69,5 @@
  */
 psVector* psVectorAlloc(
-    unsigned int nalloc,               ///< Total number of elements to make available.
+    psU32 nalloc,               ///< Total number of elements to make available.
     psElemType dataType                ///< Type of data to be held by vector.
 );
@@ -84,5 +84,5 @@
 psVector* psVectorRealloc(
     psVector* restrict psVec,          ///< Vector to reallocate.
-    unsigned int nalloc                ///< Total number of elements to make available.
+    psU32 nalloc                ///< Total number of elements to make available.
 );
 
@@ -101,5 +101,5 @@
     ///< taken to preserve the values.
 
-    unsigned int nalloc,               ///< Total number of elements to make available.
+    psU32 nalloc,               ///< Total number of elements to make available.
     psElemType type                    ///< the datatype of the returned vector
 );
