Index: trunk/psLib/src/imageops/psImagePixelManip.h
===================================================================
--- trunk/psLib/src/imageops/psImagePixelManip.h	(revision 4162)
+++ trunk/psLib/src/imageops/psImagePixelManip.h	(revision 4315)
@@ -8,6 +8,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-08 23:40:45 $
+ *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-18 02:30:49 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -32,10 +32,10 @@
  *  @return psS32     The number of clipped pixels
  */
-psS32 psImageClip(
+int psImageClip(
     psImage* input,                    ///< the image to clip
-    psF64 min,                         ///< the minimum image value allowed
-    psF64 vmin,                        ///< the value pixels < min are set to
-    psF64 max,                         ///< the maximum image value allowed
-    psF64 vmax                         ///< the value pixels > max are set to
+    double min,                        ///< the minimum image value allowed
+    double vmin,                       ///< the value pixels < min are set to
+    double max,                        ///< the maximum image value allowed
+    double vmax                        ///< the value pixels > max are set to
 );
 
@@ -49,5 +49,5 @@
  *  @return psS32     The number of clipped pixels
  */
-psS32 psImageClipComplexRegion(
+int psImageClipComplexRegion(
     psImage* input,                    ///< the image to clip
     psC64 min,                         ///< the minimum image value allowed
@@ -64,7 +64,7 @@
  *  @return psS32     The number of clipped pixels
  */
-psS32 psImageClipNaN(
+int psImageClipNaN(
     psImage* input,                    ///< the image to clip
-    psF64 value                        ///< the value to set all NaN/Inf values to
+    float value                        ///< the value to set all NaN/Inf values to
 );
 
