Index: trunk/psLib/src/imageops/psImageGeomManip.c
===================================================================
--- trunk/psLib/src/imageops/psImageGeomManip.c	(revision 4367)
+++ trunk/psLib/src/imageops/psImageGeomManip.c	(revision 4385)
@@ -10,6 +10,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-23 03:50:29 $
+ *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-25 00:51:28 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -305,5 +305,5 @@
                        const psImage* input,
                        float angle,
-                       _Complex exposed,
+                       complex exposed,
                        psImageInterpolateMode mode)
 {
@@ -597,5 +597,5 @@
                       float dx,
                       float dy,
-                      _Complex exposed,
+                      complex exposed,
                       psImageInterpolateMode mode)
 {
@@ -692,5 +692,5 @@
                           const psImage *input,
                           const psImage *inputMask,
-                          int inputMaskVal,
+                          psMaskType inputMaskVal,
                           const psPlaneTransform *outToIn,
                           psRegion region,
Index: trunk/psLib/src/imageops/psImageGeomManip.h
===================================================================
--- trunk/psLib/src/imageops/psImageGeomManip.h	(revision 4367)
+++ trunk/psLib/src/imageops/psImageGeomManip.h	(revision 4385)
@@ -8,6 +8,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-23 03:50:29 $
+ *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-25 00:51:28 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -77,5 +77,5 @@
     const psImage* input,              ///< input image
     float angle,                       ///< the rotation angle in radians.
-    _Complex exposed,                  ///< the output image pixel values for non-imagery areas
+    complex exposed,                   ///< the output image pixel values for non-imagery areas
     psImageInterpolateMode mode        ///< the interpolation mode used
 );
@@ -97,5 +97,5 @@
     float dx,                          ///< the shift in x direction.
     float dy,                          ///< the shift in y direction.
-    _Complex exposed,                  ///< the output image pixel values for non-imagery areas
+    complex exposed,                   ///< the output image pixel values for non-imagery areas
     psImageInterpolateMode mode        ///< the interpolation mode to use
 );
@@ -147,9 +147,9 @@
     const psImage *input,              ///< psImage to apply transform to
     const psImage *inputMask,          ///< if not NULL, mask of input psImage
-    int inputMaskVal,                  ///< masking value for inputMask
+    psMaskType inputMaskVal,           ///< masking value for inputMask
     const psPlaneTransform *outToIn,   ///< the transform to apply
     psRegion region,                   ///< the size of the transformed image
     const psPixels* pixels,            /**< if not NULL, consists of psPixelCoords and specifies which pixels in
-                                                         *  output image shall be transformed; otherwise, entire image generated*/
+                                                             *  output image shall be transformed; otherwise, entire image generated*/
     psImageInterpolateMode mode,       ///< the interpolation scheme to be used
     double exposedValue                   ///< Exposed value to which non-corresponding pixels are set
Index: trunk/psLib/src/imageops/psImagePixelExtract.c
===================================================================
--- trunk/psLib/src/imageops/psImagePixelExtract.c	(revision 4367)
+++ trunk/psLib/src/imageops/psImagePixelExtract.c	(revision 4385)
@@ -8,6 +8,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-23 03:50:29 $
+ *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-25 00:51:28 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -27,5 +27,5 @@
                        const psImage* restrict input,
                        const psImage* restrict mask,
-                       psU32 maskVal,
+                       psMaskType maskVal,
                        psRegion region,
                        psImageCutDirection direction,
@@ -273,5 +273,5 @@
                      const psImage* input,
                      const psImage* mask,
-                     psU32 maskVal,
+                     psMaskType maskVal,
                      psRegion region,
                      unsigned int nSamples,
@@ -407,5 +407,5 @@
                            const psImage* input,
                            const psImage* restrict mask,
-                           psU32 maskVal,
+                           psMaskType maskVal,
                            float x,
                            float y,
Index: trunk/psLib/src/imageops/psImagePixelExtract.h
===================================================================
--- trunk/psLib/src/imageops/psImagePixelExtract.h	(revision 4367)
+++ trunk/psLib/src/imageops/psImagePixelExtract.h	(revision 4385)
@@ -8,6 +8,6 @@
 *  @author Robert DeSonia, MHPCC
 *
-*  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-06-23 03:50:29 $
+*  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-06-25 00:51:28 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -64,5 +64,5 @@
     const psImage* input,              ///< the input image in which to perform the slice
     const psImage* mask,               ///< the mask for the input image.
-    psU32 maskVal,                     ///< the mask value to apply to the mask
+    psMaskType maskVal,                ///< the mask value to apply to the mask
     psRegion region,                   ///< the slice region
     psImageCutDirection direction,     ///< the slice dimension and direction
@@ -84,5 +84,5 @@
  *  psF64.
  *
- *  @return psVector    resulting vector
+ *  @return psVector*    resulting vector
  */
 psVector* psImageCut(
@@ -92,5 +92,5 @@
     const psImage* input,              ///< the input image in which to perform the cut
     const psImage* mask,               ///< the mask for the input image.
-    psU32 maskVal,                     ///< the mask value to apply to the mask
+    psMaskType maskVal,                ///< the mask value to apply to the mask
     psRegion region,                   ///< the start and end points to cut along
     unsigned int nSamples,             ///< the number of samples along the cut
@@ -115,5 +115,5 @@
     const psImage* input,              ///< the input image in which to perform the cut
     const psImage* mask,               ///< the mask for the input image.
-    psU32 maskVal,                     ///< the mask value to apply to the mask
+    psMaskType maskVal,                ///< the mask value to apply to the mask
     float x,                           ///< the column of the center of the cut circle
     float y,                           ///< the row of the center of the cut circle
Index: trunk/psLib/src/imageops/psImagePixelManip.c
===================================================================
--- trunk/psLib/src/imageops/psImagePixelManip.c	(revision 4367)
+++ trunk/psLib/src/imageops/psImagePixelManip.c	(revision 4385)
@@ -10,6 +10,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-23 03:50:29 $
+ *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-25 00:51:28 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -311,8 +311,8 @@
 
 int psImageClipComplexRegion(psImage* input,
-                             _Complex min,
-                             _Complex vmin,
-                             _Complex max,
-                             _Complex vmax)
+                             complex min,
+                             complex vmin,
+                             complex max,
+                             complex vmax)
 {
     psS32 numClipped = 0;
Index: trunk/psLib/src/imageops/psImagePixelManip.h
===================================================================
--- trunk/psLib/src/imageops/psImagePixelManip.h	(revision 4367)
+++ trunk/psLib/src/imageops/psImagePixelManip.h	(revision 4385)
@@ -8,6 +8,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-23 03:50:29 $
+ *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-25 00:51:28 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -51,8 +51,8 @@
 int psImageClipComplexRegion(
     psImage* input,                    ///< the image to clip
-    _Complex min,                      ///< the minimum image value allowed
-    _Complex vmin,                     ///< the value pixels < min are set to
-    _Complex max,                      ///< the maximum image value allowed
-    _Complex vmax                      ///< the value pixels > max are set to
+    complex min,                       ///< the minimum image value allowed
+    complex vmin,                      ///< the value pixels < min are set to
+    complex max,                       ///< the maximum image value allowed
+    complex vmax                       ///< the value pixels > max are set to
 );
 
Index: trunk/psLib/src/imageops/psImageStats.c
===================================================================
--- trunk/psLib/src/imageops/psImageStats.c	(revision 4367)
+++ trunk/psLib/src/imageops/psImageStats.c	(revision 4385)
@@ -9,6 +9,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.74 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-05-25 20:26:55 $
+ *  @version $Revision: 1.75 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-25 00:51:28 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -47,5 +47,5 @@
                       const psImage* in,
                       const psImage* mask,
-                      psS32 maskVal)
+                      psMaskType maskVal)
 {
     psVector *junkData = NULL;
@@ -122,5 +122,5 @@
                               const psImage* in,
                               const psImage* mask,
-                              psU32 maskVal)
+                              psMaskType maskVal)
 {
     PS_ASSERT_PTR_NON_NULL(out, NULL);
Index: trunk/psLib/src/imageops/psImageStats.h
===================================================================
--- trunk/psLib/src/imageops/psImageStats.h	(revision 4367)
+++ trunk/psLib/src/imageops/psImageStats.h	(revision 4385)
@@ -9,6 +9,6 @@
 *  @author GLG, MHPCC
 *
-*  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-06-14 02:54:15 $
+*  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-06-25 00:51:28 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -40,5 +40,5 @@
     const psImage* in,                 ///< image (or subimage) to calculate stats
     const psImage* mask,               ///< mask data for image (NULL ok)
-    psS32 maskVal                      ///< mask Mask for mask
+    psMaskType maskVal                 ///< mask value for mask
 );
 
@@ -55,5 +55,5 @@
     const psImage* in,                 ///< Image data to be histogramed.
     const psImage* mask,               ///< mask data for image (NULL ok)
-    psU32 maskVal                      ///< mask Mask for mask
+    psMaskType maskVal                 ///< mask Mask for mask
 );
 
